mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
15 lines
386 B
TypeScript
15 lines
386 B
TypeScript
import Layout from "@/components/Layout";
|
|
|
|
export default function Contact() {
|
|
return (
|
|
<Layout>
|
|
<header className="grid h-[calc(100%-176px)] md:h-[calc(100%-132px)] place-items-center">
|
|
<div className="relative h-full w-full bg-amber-200"></div>
|
|
<div className="absolute">
|
|
<h1>Contact Page</h1>
|
|
</div>
|
|
</header>
|
|
</Layout>
|
|
);
|
|
}
|