Files
dishpix/app/page.tsx
2025-08-13 15:17:31 +02:00

15 lines
408 B
TypeScript

import Image from "next/image";
import { Button } from "@/components/ui/button";
import { Header } from "@/components/ui/header";
export default function Home() {
return (
<div>
<main className="p-4">
<h1 className="text-2xl font-bold">Welcome to the Test Page</h1>
<p className="mt-2">This is a test page to display the new header component.</p>
</main>
</div>
);
}