portamador-landing-site/src/app/layout.tsx

35 lines
707 B
TypeScript
Raw Normal View History

2025-09-21 23:03:02 +02:00
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Port Amador",
description: "Premium marine equipment and services",
};
2025-09-21 23:03:02 +02:00
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-[#1b233b]`}
2025-09-21 23:03:02 +02:00
>
{children}
</body>
</html>
);
}