Skip to content
Snippets Groups Projects
layout.tsx 315 B
Newer Older
import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Rodolf",
  description: "Bonjour",
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en">
      <body style={{ margin: 0 }}>{children}</body>
    </html>