Redesign mostly done

This commit is contained in:
Firq 2023-03-04 19:11:52 +01:00
parent a5521b479e
commit 8d2ef10fb7
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
24 changed files with 204 additions and 145 deletions

View file

@ -1,9 +1,14 @@
---
import Navbar from '../components/navbar.astro';
import NavbarEntry from '../components/navbarEntry.astro';
import navdata from '../../static/_navdata.json'
export interface Props {
title: string;
currentpage: string;
}
const { title } = Astro.props;
const { currentpage, title } = Astro.props;
const description: string = "A reference for all esports Servants, CEs and already completed TAs that Firq can provide. Contact information available as well.";
---
@ -25,6 +30,9 @@ const description: string = "A reference for all esports Servants, CEs and alrea
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/iconoir-icons/iconoir@main/css/iconoir.css">
</head>
<body>
<Navbar>
{navdata.map((item) => (<NavbarEntry currentPage={currentpage} {...item}/>))}
</Navbar>
<slot />
</body>
</html>

View file

@ -31,7 +31,8 @@
<style>
footer {
color: white
color: white;
bottom:0;
}
footer > div > a {
color: white