wasm-tools-mj

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

layout.tsx (919B)


      1 import type { Metadata } from "next";
      2 import { Geist, Geist_Mono } from "next/font/google";
      3 import "./globals.css";
      4 
      5 const geistSans = Geist({
      6   variable: "--font-geist-sans",
      7   subsets: ["latin"],
      8 });
      9 
     10 const geistMono = Geist_Mono({
     11   variable: "--font-geist-mono",
     12   subsets: ["latin"],
     13 });
     14 
     15 export const metadata: Metadata = {
     16   title: "WASM webtools",
     17   description: "Generated by Minerva_Juppiter",
     18 };
     19 
     20 export default function RootLayout({
     21   children,
     22 }: Readonly<{
     23   children: React.ReactNode;
     24 }>) {
     25   return (
     26     <html lang="jp">
     27       <body>
     28 	  		<header>
     29 				<h1>This is WASM tools by Minerva_Juppiter</h1>
     30 				<br/>
     31 				<h3>In case you find issue, please report me vir Github Issue.</h3>
     32 				<br/>
     33 				<a href="https://www.minervajuppiter.net/"><h4>About Me</h4></a>
     34 			</header>
     35         	{children}
     36 			<footer>
     37 			<p>@all right reserved by minerva_juppiter</p>
     38 			</footer>
     39       </body>
     40     </html>
     41   );
     42 }