mirror of
https://git.verdigado.com/NB-Public/simple-wkd.git
synced 2024-12-06 14:52:41 +01:00
Move all files into website directory
This commit is contained in:
parent
5919c55808
commit
f447a2293a
20 changed files with 0 additions and 0 deletions
24
website/src/layouts/Layout.astro
Normal file
24
website/src/layouts/Layout.astro
Normal file
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
export interface Props {
|
||||
title: string;
|
||||
}
|
||||
|
||||
const { title } = Astro.props;
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="h-full">
|
||||
<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
|
||||
class="h-full font-mono dark:bg-neutral-800 dark:text-neutral-300"
|
||||
id="body"
|
||||
>
|
||||
<slot />
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue