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.
50 lines
1.6 KiB
50 lines
1.6 KiB
/* eslint-disable @next/next/no-head-element */
|
|
|
|
import Link from "next/link";
|
|
import './globals.css';
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css"
|
|
integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY=" crossOrigin="anonymous"/>
|
|
</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>
|
|
<div className="social">
|
|
<Link href="https://discord.gg/S763kufxCF">
|
|
<i className="fa fa-discord-alt fa-2x" aria-hidden="true"></i>
|
|
</Link>
|
|
<Link href="https://git.emperorpenguin.dev/Alex/Saachen_lu">
|
|
<i className="fa fa-gitea fa-2x" aria-hidden="true"></i>
|
|
</Link>
|
|
</div>
|
|
</nav>
|
|
<div>
|
|
{children}
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
);
|
|
} |