shimane-u-fest-map

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

layout.tsx (368B)


      1 import type { Metadata } from "next";
      2 import "./globals.css";
      3 
      4 export const metadata: Metadata = {
      5   title: "Shimane-u-fest-map",
      6   description: "島根大学祭の非公式マップ",
      7 };
      8 
      9 export default function RootLayout({
     10   children,
     11 }: Readonly<{
     12   children: React.ReactNode;
     13 }>) {
     14   return (
     15     <html lang="jp">
     16       <body>{children}</body>
     17     </html>
     18   );
     19 }