Posts working

This commit is contained in:
2025-05-18 11:30:19 -06:00
parent 6ceb4918f7
commit 066c1b4115
11 changed files with 832 additions and 100 deletions

View File

@@ -1,6 +1,7 @@
---
import NavigationBar from "../components/NavigationBar";
const currentPath = Astro.url.pathname;
import '../styles/global.css';
---
<!doctype html>
@@ -12,15 +13,11 @@ const currentPath = Astro.url.pathname;
<meta name="generator" content={Astro.generator} />
<title>Atridad Lahiji</title>
</head>
<body>
</body>
<body class="flex flex-col min-h-screen">
<main class="flex-grow flex flex-col gap-4 items-center justify-center">
<slot />
</main>
<NavigationBar currentPath={currentPath} />
<!-- <ScrollUpButton /> -->
</body>
</body>
</html>