0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-12-06 14:52:41 +01:00

Initial commit

This commit is contained in:
Delta1925 2023-04-15 21:37:12 +02:00
commit e78425f46c
No known key found for this signature in database
GPG key ID: 1C21ACE44193CB25
13 changed files with 3648 additions and 0 deletions

1
src/env.d.ts vendored Normal file
View file

@ -0,0 +1 @@
/// <reference types="astro/client" />

21
src/layouts/Layout.astro Normal file
View file

@ -0,0 +1,21 @@
---
export interface Props {
title: string;
}
const { title } = 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>{title}</title>
</head>
<body>
<slot />
</body>
</html>

7
src/pages/index.astro Normal file
View file

@ -0,0 +1,7 @@
---
import Layout from "../layouts/Layout.astro";
---
<Layout title="simple-wkd-website">
<h1>simple-wkd-website</h1>
</Layout>