Setup a very basic starting point for the website

This commit is contained in:
BuyMyMojo 2024-12-16 01:05:08 +11:00
parent f1f454b6f9
commit 99f8089b6d
20 changed files with 324 additions and 22 deletions

View file

@ -0,0 +1,25 @@
---
import Navigation from '../components/Navigation.astro';
import Favicon from '../components/Favicon.astro';
import Footer from '../components/Footer.astro';
import '../styles/aria.css';
const { pageTitle } = Astro.props;
---
<html lang="en">
<head>
<meta charset="utf-8" />
<Favicon />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} >
<title>{pageTitle}</title>
</head>
<body>
<Navigation />
<h1>{pageTitle}</h1>
<slot />
<Footer />
</body>
</html>