blob: 9d5b2b9f6a796e7158505b292d79001bde46ad51 (
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">アキバ総研</a>より。
</div>
</body>
</html>
);
}
|