Summary (required)

This commit is contained in:
Blboun3
2024-03-26 21:12:10 +01:00
parent fbd130eb8b
commit 44eabc1a09
7 changed files with 69 additions and 10 deletions

View File

@ -1,5 +1,7 @@
---
const { title, description, lang } = Astro.props;
import Navbar from "../components/Navbar.astro";
import "../style/index.css";
---
<!DOCTYPE html>
<html lang={lang}>
@ -9,7 +11,8 @@ const { title, description, lang } = Astro.props;
<meta name="description" content={description}>
<title>{title}</title>
</head>
<body>
<body class="bg-bkg">
<Navbar />
<slot/>
</body>
</html>