diff options
| author | IwanIDev <iwan@iwani.dev> | 2026-03-21 12:41:49 +0000 |
|---|---|---|
| committer | IwanIDev <iwan@iwani.dev> | 2026-03-21 12:41:49 +0000 |
| commit | 72f129472044a97ffa06136da0a473581914c7e9 (patch) | |
| tree | de9d0116f8f7da3716917e484efe1ebceb14f267 /src/layouts | |
Initial Commit
Set up Astro and shadcn/ui
Diffstat (limited to 'src/layouts')
| -rw-r--r-- | src/layouts/main.astro | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/layouts/main.astro b/src/layouts/main.astro new file mode 100644 index 0000000..69b80d2 --- /dev/null +++ b/src/layouts/main.astro @@ -0,0 +1,15 @@ +--- +import "@/styles/global.css" +--- + +<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" /> + <title>Astro App</title> + </head> + <body> + <slot /> + </body> +</html> |
