mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
16 lines
424 B
TypeScript
16 lines
424 B
TypeScript
import Layout from "@/components/Layout";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Layout>
|
|
<header className="grid h-[calc(100%-64px)] place-items-center">
|
|
<div className="relative h-full w-full bg-[url('/images/map-bg.jpg')] brightness-[0.2]"></div>
|
|
<div className="absolute z-10">
|
|
<h1>Heading 1</h1>
|
|
<h2>Heading 2</h2>
|
|
</div>
|
|
</header>
|
|
</Layout>
|
|
);
|
|
}
|