2025-11-15 23:46:47 +09:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import "./globals.css";
|
2025-11-16 17:44:47 +09:00
|
|
|
import { pretendard } from "./fonts";
|
2025-11-18 07:53:09 +09:00
|
|
|
import HeaderVisibility from "./components/HeaderVisibility";
|
|
|
|
|
import Footer from "./components/Footer";
|
2025-11-15 23:46:47 +09:00
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2025-11-16 00:10:16 +09:00
|
|
|
title: "XRLMS",
|
|
|
|
|
description: "XRLMS(description)",
|
2025-11-15 23:46:47 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
2025-11-16 17:44:47 +09:00
|
|
|
}: Readonly<{ children: React.ReactNode; }>) {
|
2025-11-15 23:46:47 +09:00
|
|
|
return (
|
2025-11-18 03:27:30 +09:00
|
|
|
<html lang="ko">
|
2025-11-18 07:53:09 +09:00
|
|
|
<body className={`${pretendard.className} min-h-screen flex flex-col`}>
|
|
|
|
|
<HeaderVisibility />
|
|
|
|
|
<main className="flex-1 min-h-0">
|
|
|
|
|
{children}
|
|
|
|
|
</main>
|
|
|
|
|
<Footer />
|
2025-11-15 23:46:47 +09:00
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|