Started work on the Hero section.
This commit is contained in:
@ -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>
|
Reference in New Issue
Block a user