wasm-tools-mj

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

commit 2dcf95d22c2235ca7676081b646a1316f5350579
parent 665a88448b29b8c37cae12cd6f2010b2298a9576
Author: minerva-juppiter <ryouturn@gmail.com>
Date:   Tue,  8 Jul 2025 21:46:08 +0900

modfy home and add layout to header and footer

Diffstat:
Mapp/layout.tsx | 13+++++++++++--
Mapp/page.tsx | 96+++++--------------------------------------------------------------------------
2 files changed, 16 insertions(+), 93 deletions(-)

diff --git a/app/layout.tsx b/app/layout.tsx @@ -24,8 +24,17 @@ export default function RootLayout({ }>) { return ( <html lang="jp"> - <body className={`${geistSans.variable} ${geistMono.variable}`}> - {children} + <body> + <header> + <h3>This is WASM tools by Minerva_Juppiter</h3> + <h5>In case you find issue, please report me vir Github Issue.</h5> + <br/> + <a href="https://www.minervajuppiter.net/"><h4>About Me</h4></a> + </header> + {children} + <footer> + <p>@all right reserved by minerva_juppiter</p> + </footer> </body> </html> ); diff --git a/app/page.tsx b/app/page.tsx @@ -1,95 +1,9 @@ import Image from "next/image"; -import styles from "./page.module.css"; export default function Home() { - return ( - <div className={styles.page}> - <main className={styles.main}> - <Image - className={styles.logo} - src="/next.svg" - alt="Next.js logo" - width={180} - height={38} - priority - /> - <ol> - <li> - Get started by editing <code>app/page.tsx</code>. - </li> - <li>Save and see your changes instantly.</li> - </ol> - - <div className={styles.ctas}> - <a - className={styles.primary} - href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app" - target="_blank" - rel="noopener noreferrer" - > - <Image - className={styles.logo} - src="/vercel.svg" - alt="Vercel logomark" - width={20} - height={20} - /> - Deploy now - </a> - <a - href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app" - target="_blank" - rel="noopener noreferrer" - className={styles.secondary} - > - Read our docs - </a> - </div> - </main> - <footer className={styles.footer}> - <a - href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app" - target="_blank" - rel="noopener noreferrer" - > - <Image - aria-hidden - src="/file.svg" - alt="File icon" - width={16} - height={16} - /> - Learn - </a> - <a - href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app" - target="_blank" - rel="noopener noreferrer" - > - <Image - aria-hidden - src="/window.svg" - alt="Window icon" - width={16} - height={16} - /> - Examples - </a> - <a - href="https://nextjs.org?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app" - target="_blank" - rel="noopener noreferrer" - > - <Image - aria-hidden - src="/globe.svg" - alt="Globe icon" - width={16} - height={16} - /> - Go to nextjs.org → - </a> - </footer> - </div> - ); + return ( + <main> + <h1>Home</h1> + </main> + ); }