Nye-TeeOff/frontend/src/app/layout.tsx

19 lines
523 B
TypeScript
Raw Normal View History

2026-02-26 09:20:51 +01:00
import type { Metadata } from "next";
import "./globals.css";
2026-02-27 08:53:14 +01:00
import Header from "@/components/Header";
2026-02-26 09:20:51 +01:00
export const metadata: Metadata = {
2026-02-27 08:53:14 +01:00
title: "TeeOff.no - Din guide til norske golfbaner",
description: "Oppdatert banestatus, priser og informasjon om alle norske golfanlegg.",
2026-02-26 09:20:51 +01:00
};
2026-02-27 08:53:14 +01:00
export default function RootLayout({ children }: { children: React.ReactNode }) {
2026-02-26 09:20:51 +01:00
return (
2026-02-27 08:53:14 +01:00
<html lang="nb">
<body className="antialiased bg-[#f1f7ed]">
<Header />
2026-02-26 09:20:51 +01:00
{children}
</body>
</html>
);
2026-02-27 08:53:14 +01:00
}