24 lines
394 B
TypeScript
24 lines
394 B
TypeScript
import Link from 'next/link'
|
|
|
|
export default function RootLayout({
|
|
children
|
|
}: {
|
|
children: React.ReactNode
|
|
}): JSX.Element {
|
|
return (
|
|
<html>
|
|
<head />
|
|
<body>
|
|
<nav>
|
|
<Link href="/">
|
|
Home
|
|
</Link>
|
|
<Link href="/contact">
|
|
Contact Me
|
|
</Link>
|
|
</nav>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|