sync
This commit is contained in:
@ -4,15 +4,17 @@ import Navbar from "../components/Navbar.astro";
|
||||
import "../style/index.css";
|
||||
---
|
||||
<!DOCTYPE html>
|
||||
<html lang={lang} data-theme={themeOverride ? themeOverride : undefined}>
|
||||
<html lang={lang} data-theme={themeOverride ? themeOverride : undefined} class="overflow-hidden">
|
||||
<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 h-dvh w-full">
|
||||
<body class="bg-bkg h-dvh w-full overflow-hidden">
|
||||
<!--<Navbar /> -->
|
||||
<slot/>
|
||||
<div class="snap-mandatory snap-y">
|
||||
<slot />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
3
src/layouts/SinglePage.astro
Normal file
3
src/layouts/SinglePage.astro
Normal file
@ -0,0 +1,3 @@
|
||||
<div class="snap-center w-screen h-screen">
|
||||
<slot />
|
||||
</div>
|
Reference in New Issue
Block a user