fries-website/src/layouts/Layout.astro

29 lines
557 B
Plaintext

---
export interface Props {
title: string;
}
const { title } = Astro.props;
import '@fontsource/atkinson-hyperlegible';
import Footer from "../components/Footer.astro";
import Navigation from "../components/Navigation.astro";
import "../styles/global.css";
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>
<Navigation />
<hr>
<slot />
<hr>
<Footer />
</body>
</html>