alter Header & add info page

This commit is contained in:
2022-05-07 12:17:47 +02:00
parent 66e92fd8fd
commit 920a193adb
2 changed files with 16 additions and 4 deletions

View File

@@ -8,13 +8,13 @@ export default function Home() {
<Link href="/">
<a>Główna</a>
</Link>
<Link href="/">
<Link href="">
<a>Rankingi</a>
</Link>
<Link href="/">
<a>Sztab</a>
<Link href="/o-gractwie">
<a>O Gractwie</a>
</Link>
<Link href="/">
<Link href="">
<a>Zaloguj się</a>
</Link>
</nav>

12
pages/o-gractwie.js Normal file
View File

@@ -0,0 +1,12 @@
import Header from "../components/Header";
export default function Informacje() {
return (
<>
<Header />
<p style={{ textAlign: "center", marginTop: "3rem" }}>
I&apos;m coming after you.
</p>
</>
);
}