jaecoo-kelapagading/app/layout.tsx

31 lines
598 B
TypeScript
Raw Permalink Normal View History

2025-07-14 07:31:51 +00: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: "Jaecoo",
2025-07-15 07:56:05 +00:00
description: "Jaecoo Kelapa Gading",
2025-07-14 07:31:51 +00:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}