improved site header, added contact form, content card carousel, footer, and more photos

This commit is contained in:
2026-05-28 21:20:47 +01:00
parent 6a579699e7
commit 74a908f07f
32 changed files with 1394 additions and 386 deletions

View File

@@ -1,7 +1,8 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Menubar from '../components/menubar';
import SiteHeader from '../components/site-header';
import Footer from "@/components/footer";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -18,6 +19,11 @@ export const metadata: Metadata = {
description: "Generated by create next app",
};
export const viewport = {
width: "device-width",
initialScale: 1,
};
export default function RootLayout({
children,
}: Readonly<{
@@ -29,8 +35,9 @@ export default function RootLayout({
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col dark:bg-black">
<Menubar />
{children}
<SiteHeader />
{children}
<Footer />
</body>
</html>
);