Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
319 B
TypeScript
9 lines
319 B
TypeScript
export default function TestPage() {
|
|
return (
|
|
<div className="container mx-auto px-4 py-8 md:py-12">
|
|
<h1 className="text-4xl md:text-5xl font-bold tracking-tight text-balance mb-4">Test Page</h1>
|
|
<p className="text-muted-foreground">This is a test page to verify routing works.</p>
|
|
</div>
|
|
);
|
|
}
|
|
|