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.
 
 
 

28 lines
533 B

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "My First Next App",
description: "Learn Front Using Next.js",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="ko">
<body>
<header>
<nav>
<a href="/">Home</a>|<a href="/about">About</a>
</nav>
</header>
<main>
{children}
</main>
</body>
</html>
);
}