Initial commit, working app

This commit is contained in:
2025-05-09 20:59:58 +02:00
parent 02b81219fa
commit e250b6b5d8
10 changed files with 431 additions and 62 deletions

19
src/layouts/Base.astro Normal file
View File

@@ -0,0 +1,19 @@
---
interface Props {
title?: string;
}
const { title = "KarkarCar" } = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>{title}</title>
</head>
<body>
<slot />
</body>
</html>