summaryrefslogtreecommitdiff
path: root/src/app/layout.tsx
blob: aa0dad77cac4b00fe5e4f9670ae101ecebf1c34d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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" className="original-href">アキバ総研</a>より。
        </div>
      </body>
    </html>
  );
}