map height fixed

This commit is contained in:
Owen Rees
2023-06-07 16:34:08 +02:00
parent 3f2509d429
commit c5aac42344
11 changed files with 1353 additions and 51 deletions
+14
View File
@@ -0,0 +1,14 @@
import Layout from "@/components/Layout";
export default function Home() {
return (
<Layout>
<header className="grid h-[calc(100%-144px)] md:h-[calc(100%-112px)] place-items-center">
<div className="relative h-full w-full bg-amber-200"></div>
<div className="absolute">
<h1>Contact Page</h1>
</div>
</header>
</Layout>
);
}