46 lines
896 B
TypeScript
46 lines
896 B
TypeScript
import type { Metadata } from "next";
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
import Footer from "@/components/footer/main";
|
|
|
|
const geistSans = Geist({
|
|
variable: "--font-geist-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const geistMono = Geist_Mono({
|
|
variable: "--font-geist-mono",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "uwuzu Light Client",
|
|
description: "(自称)超軽量uwuzuクライアントです。",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="ja">
|
|
<body
|
|
className={`
|
|
${geistSans.variable}
|
|
${geistMono.variable}
|
|
min-h-screen
|
|
`}
|
|
>
|
|
<div className={`
|
|
mb-[24px]
|
|
`}>
|
|
{children}
|
|
</div>
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|