Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
22 lines
492 B
TypeScript
22 lines
492 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Les Crêpes de Maîtres | Famous French Chef Recipes",
|
|
description: "Discover authentic crêpe recipes from legendary French chefs. Powered by json-render.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="antialiased">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|