Note: You are previewing the demo of Next.js Starter Kit by LaunchNext.dev
LaunchNext

Components

Pre-built components included in LaunchNext.

UI Components

LaunchNext includes a comprehensive set of Shadcn components:

Button

import { Button } from "@/components/ui/button";

<Button variant="default">Click me</Button>
<Button variant="outline">Outlined</Button>
<Button variant="ghost">Ghost</Button>

Card

import { Card, CardContent, CardHeader } from "@/components/ui/card";

<Card>
  <CardHeader>Card Title</CardHeader>
  <CardContent>Card content goes here.</CardContent>
</Card>

Input

import { Input } from "@/components/ui/input";

<Input placeholder="Enter your email" type="email" />

Layout Components

The Navbar component includes responsive mobile menu, navigation links, and a dropdown for additional pages.

The Footer component features a multi-column layout with social links, product links, and legal pages.

AuthCard

A centered card wrapper used for authentication pages (sign in, sign up, forgot password).