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
599 B

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