Started work on the Hero section.

This commit is contained in:
2024-04-02 21:04:11 +02:00
parent 44eabc1a09
commit 38bec6c326
9 changed files with 72 additions and 26 deletions

View File

@ -1,18 +1,18 @@
---
const { title, description, lang } = Astro.props;
const { title, description, lang, themeOverride } = Astro.props;
import Navbar from "../components/Navbar.astro";
import "../style/index.css";
---
<!DOCTYPE html>
<html lang={lang}>
<html lang={lang} data-theme={themeOverride ? themeOverride : undefined}>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content={description}>
<title>{title}</title>
</head>
<body class="bg-bkg">
<Navbar />
<body class="bg-bkg h-dvh w-full">
<!--<Navbar /> -->
<slot/>
</body>
</html>