Rocky_Mountain_Vending/app/test-page/page.tsx
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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>
);
}