Redesign mostly done
This commit is contained in:
parent
a5521b479e
commit
8d2ef10fb7
24 changed files with 204 additions and 145 deletions
|
@ -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>
|
||||
|
|
|
@ -31,7 +31,8 @@
|
|||
|
||||
<style>
|
||||
footer {
|
||||
color: white
|
||||
color: white;
|
||||
bottom:0;
|
||||
}
|
||||
footer > div > a {
|
||||
color: white
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue