myndlabs.tech
The official varsha website and documentation. The canonical reference implementation showcasing every feature of the starter.
varsha is designed to be a starting point for a wide range of websites — from SaaS landing pages and founder portfolios to documentation sites, blogs, and product microsites. This page showcases how people are using varsha in production.
myndlabs.tech
The official varsha website and documentation. The canonical reference implementation showcasing every feature of the starter.
founder.myndlabs.tech
A founder-focused site built with varsha, demonstrating how to customize the starter for personal branding, product launches, and portfolio use cases.
The varsha ecosystem includes several opinionated starter variations for different use cases. These are available as branches or separate repositories:
| Template | Description |
|---|---|
| varsha (default) | The standard starter with marketing site, docs, blog, and multi-theme support |
| varsha-docs-only | Documentation-focused variant without marketing landing page |
| varsha-blog | Blog-first variant optimized for content creators |
| varsha-minimal | Stripped-down starter with just the design system and theme switcher |
To use a variant, specify the branch or repository when using degit:
# Default starternpx degit yethikrishna/web-ui-template my-site
# Minimal variant (if available)npx degit yethikrishna/web-ui-template#minimal my-sitevarsha is flexible enough to support many types of websites. Here are common patterns with implementation guidance.
A typical SaaS marketing site built with varsha includes:
/docs//blog/Use MarketingLayout for all marketing pages and Starlight for documentation. Add a pricing page at src/pages/pricing.astro.
Showcase your work, writing, and projects:
See founder.myndlabs.tech for a reference implementation.
If you do not need a marketing landing page:
index.htmlsrc/styles/starlight.cssFor a product launch or campaign page:
Combine a marketing landing page with full project documentation:
stats.astro page)---import MarketingLayout from '../components/MarketingLayout.astro';---
<MarketingLayout title="Pricing" description="Simple, transparent pricing for every team." canonicalPath="/pricing/"> <main class="page"> <section class="hero"> <h1>Simple pricing</h1> <p>Start free. Scale when you are ready.</p> </section>
<section class="section"> <div class="container"> <div class="feature-grid"> <div class="feature-card"> <h3>Free</h3> <p class="price">$0</p> <ul> <li>1 project</li> <li>Community support</li> </ul> <a href="/docs/install/" class="button button--secondary">Get started</a> </div> <div class="feature-card"> <h3>Pro</h3> <p class="price">$29/mo</p> <ul> <li>Unlimited projects</li> <li>Priority support</li> </ul> <a href="/docs/install/" class="button button--primary">Start free trial</a> </div> </div> </div> </section> </main></MarketingLayout>Add a form endpoint from your email provider (Buttondown, Mailchimp, ConvertKit, etc.) in a marketing section:
<section class="section"> <div class="container"> <h2>Stay updated</h2> <form action="https://buttondown.email/api/emails/embed-subscribe/yourlist" method="post"> <input type="email" name="email" placeholder="you@example.com" required /> <button type="submit" class="button button--primary">Subscribe</button> </form> </div></section>Built a site with varsha? We would love to feature it. Share it:
#builtwithvarshaQuick start
Build your first page in five minutes.
Showcase
See more sites built with varsha.
Deployment
Ship your site to production.