next.js/examples/image-component/app/layout.tsx
layout.tsx20 lines465 B
import "../app.css";

export const metadata = {
  title: "Image Component with Next.js",
  description:
    "This page demonstrates the usage of the next/image component with live examples. This component is designed to automatically optimize images on-demand as the browser requests them.",
};

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