Files
Kino-Website-Framework/src/layouts/BaseLayout.astro

25 lines
462 B
Plaintext

---
import Navbar from "../components/Navbar.astro";
import "../styles/global.css";
interface Props {
title: string;
}
const { title } = Astro.props;
---
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>{title} | EAGLE's IMAX</title>
</head>
<body>
<Navbar />
<slot />
</body>
</html>