import { Kanit } from 'next/font/google'; import Image from 'next/image'; import Link from 'next/link'; import { Button } from '@gib/ui/button'; const kanitSans = Kanit({ subsets: ['latin'], weight: ['400', '500', '600', '700'], }); export function Hero() { return (
{/* Badge */}
🚀 Production-ready monorepo template
{/* Heading */}

Build Full-Stack Apps with{' '} convex monorepo

{/* Description */}

A Turborepo starter with Next.js, Expo, and self-hosted Convex. Ship web and mobile apps faster with shared code, type-safe backend, and complete control over your infrastructure.

{/* CTA Buttons */}
{/* Features Quick List */}
TypeScript
Self-Hosted
Real-time
Auth Included
); }