Simply create a CMS page with the content that you would like, and you can add this code inside of a container (such as <p> or <div>) in the content:
{{block name="type_plan_form" class="\Omnyfy\VendorSubscription\Block\Form\Type" vendor_type_id=1 }}
The only thing you will need to change for the different vendor types are the IDs - as per the Vendor Types grid - this will show all available plans for this vendor type.
vendor_type_id=1
Here is an example code for the example in the screenshot (minimized the content):
<div class="container">
<h2>Sign up as a Vendor on the Omnyfy Demo Marketplace</h2>
<p>Ut viverra libero at ligula blandit, sit amet pellentesque mi volutpat. In id imperdiet lorem. Suspendisse dignissim, dolor ut placerat aliquet, nunc turpis consectetur elit, vitae lobortis felis lectus non ex. Nam molestie id est eget varius.</p>
<p></p>
<h3 style="text-align: center;">Sign up as a Retailer that sells products</h3>
<p>{{block name="type_plan_form" class="\Omnyfy\VendorSubscription\Block\Form\Type" vendor_type_id=1 }}</p>
<hr>
<h3 style="text-align: center;">Sign up as a Service Provider that can book Healthcare Services</h3>
<p>{{block name="type_plan_form" class="\Omnyfy\VendorSubscription\Block\Form\Type" vendor_type_id=4 }}</p>
</div>