37 lines
943 B
Plaintext
37 lines
943 B
Plaintext
---
|
|
// Path: src/layouts/LandingLayout.astro
|
|
|
|
import { ClientRouter } from "astro:transitions";
|
|
|
|
import Navbar from "../components/Navbar/Navbar.astro";
|
|
import ThemeScript from "../helpers/colorMode.astro";
|
|
import "../styles/main.scss";
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<ClientRouter />
|
|
|
|
<!-- Color Mode Helper -->
|
|
<ThemeScript />
|
|
|
|
<!-- Favicon Icons -->
|
|
<link rel="icon" href="favicon/favicon.ico" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png" />
|
|
<link rel="manifest" href="favicon/site.webmanifest" />
|
|
|
|
<title>Web Dev Lesson Notes</title>
|
|
</head>
|
|
<body>
|
|
<Navbar />
|
|
<main>
|
|
<slot />
|
|
</main>
|
|
</body>
|
|
</html>
|