big card, elements list & page, navigation

This commit is contained in:
2025-06-22 00:44:18 +02:00
parent 7df048adb0
commit 470a53484b
8 changed files with 222 additions and 27 deletions

View File

@@ -1,16 +1,14 @@
---
import "../styles/global.css";
import Head from "./Head.astro";
import Navigation from "../components/Navigation.astro";
const { title = "Just a title", description = "Adescription" } = Astro.props;
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>Astro Basics</title>
</head>
<Head {title} {description} />
<body>
<Navigation />
<slot />
</body>
</html>