diff options
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> |
