32 lines
813 B
Text
32 lines
813 B
Text
---
|
|
import Navbar from "../components/core/Navbar.astro";
|
|
import Footer from "../components/core/Footer.astro";
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>Astro Basics</title>
|
|
</head>
|
|
|
|
<body class="bg-ieee-black relative flex flex-col items-center min-h-screen justify-between overflow-x-clip">
|
|
<Navbar />
|
|
<main class="w-[95%]">
|
|
<slot />
|
|
</main>
|
|
<Footer />
|
|
</body>
|
|
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</html>
|