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.

40 lines
958 B

/* eslint-disable @next/next/no-head-element */
import Link from "next/link";
import './globals.css';
export default function RootLayout({ children }) {
return (
<html>
<head></head>
<body>
<main>
<nav>
<Link href="/">
Home
</Link>
<Link href="courses">
Kueren
</Link>
<Link href ="user">
Mäi Konto
</Link>
<Link href="register">
Registréieren
</Link>
<Link href="forum">
Forum
</Link>
<Link href="contact">
Kontakt
</Link>
</nav>
<div>
{children}
</div>
</main>
</body>
</html>
);
}