Bumped astro and restructured

This commit is contained in:
Firq 2024-08-21 13:26:38 +02:00
parent 949b05b192
commit 629bf91d4f
Signed by: Firq
GPG key ID: 4DE1059A4666E89F
7 changed files with 187 additions and 134 deletions

17
src/data/_navdata.json Normal file
View file

@ -0,0 +1,17 @@
[
{
"link": "/",
"text": "Home",
"icon": "home"
},
{
"link": "/database",
"text": "TA Database",
"icon": "database"
},
{
"link": "/teslafest",
"text": "Teslafest",
"icon": "databasestar"
}
]

View file

@ -1,7 +1,7 @@
---
import Navbar from '../components/navbar.astro'
import NavbarEntry from '../components/navbarEntry.astro'
import navdata from '../../static/data/_navdata.json'
import navdata from '../data/_navdata.json'
import embed from '../assets/embed.png'
import home from 'iconoir/icons/home.svg'
import database from 'iconoir/icons/database.svg'