You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tryFullStack/web/src/app/layout.tsx

28 lines
586 B

1 month ago
import type { Metadata } from "next";
import "./globals.css";
4 weeks ago
import Link from "next/link";
import AppHeader from "@/components/app-header";
import Providers from "./providers";
1 month ago
export const metadata: Metadata = {
4 weeks ago
title: "Web",
description: "SPA Boilereplate",
1 month ago
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
4 weeks ago
<html lang="ko">
<body className="m-0">
<AppHeader />
<Providers>
<main className="mx-auto w-full">{children}</main>
</Providers>
1 month ago
</body>
</html>
);
}