Moved files to prepare for solid-start migration

This commit is contained in:
aronmal 2024-01-05 01:29:32 +01:00
parent 4ea622e251
commit eb3acd206c
Signed by: aronmal
GPG key ID: 816B7707426FC612
14 changed files with 0 additions and 0 deletions

26
src/app.tsx Normal file
View file

@ -0,0 +1,26 @@
---
import Footer from "@components/Footer.astro";
import NavBar from "@components/NavBar.astro";
import "../styles/Layout.scss";
import "../styles/GlobalLayout.css";
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="The Splatoon Discord bot with unique features."
/>
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="generator" content={Astro.generator} />
<title>li'l Judd - Your competitive Splatoon assistant</title>
</head>
<body>
<NavBar />
<slot />
<Footer />
</body>
</html>