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.

29 lines
533 B

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