webtools

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

layout.tsx (369B)


      1 import type { Metadata } from "next";
      2 import "./globals.css";
      3 
      4 export const metadata: Metadata = {
      5   title: "Webtools by Minerva Juppiter",
      6   description: "Webtools by minerva-jupiter",
      7 };
      8 
      9 export default function RootLayout({
     10   children,
     11 }: Readonly<{
     12   children: React.ReactNode;
     13 }>) {
     14   return (
     15     <html lang="en">
     16       <body>{children}</body>
     17     </html>
     18   );
     19 }