23 lines
573 B
TypeScript
23 lines
573 B
TypeScript
import type { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Test Page | Rocky Mountain Vending",
|
|
description: "Internal routing test page.",
|
|
robots: {
|
|
index: false,
|
|
follow: false,
|
|
},
|
|
}
|
|
|
|
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>
|
|
)
|
|
}
|