diff options
Diffstat (limited to 'src/app/layout.tsx')
-rw-r--r-- | src/app/layout.tsx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..9d5b2b9 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,28 @@ +import type { Metadata } from "next";
+import "./globals.css";
+import { NavigationHeader } from "./_components/navigationHeader";
+
+export const metadata: Metadata = {
+ title: "アキバ総研アーカイブ",
+ //description: "Generated by create next app",
+};
+
+export default function RootLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode;
+}>) {
+ return (
+ <html lang="en">
+ <body
+ className={`antialiased min-h-screen flex flex-col`}
+ >
+ <NavigationHeader></NavigationHeader>
+ {children}
+ <div>
+ 全てのデータは<a href="https://akiba-souken.com/" target="_blank">アキバ総研</a>より。
+ </div>
+ </body>
+ </html>
+ );
+}
|