next.js/examples/with-youtube-embed/app/layout.tsx
layout.tsx19 lines343 B
import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "With YouTube Embed",
  description: "Next.js example with YouTube Embed.",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}
Quest for Codev2.0.0
/
SIGN IN