diff options
Diffstat (limited to 'web/src/components/Base.astro')
-rw-r--r-- | web/src/components/Base.astro | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/web/src/components/Base.astro b/web/src/components/Base.astro new file mode 100644 index 0000000..73ce48c --- /dev/null +++ b/web/src/components/Base.astro @@ -0,0 +1,12 @@ +--- +import Head, {type Props as HeadProps} from "./Head.astro"; + +type Props = {} & HeadProps; +--- + +<html> +<Head {...Astro.props}></Head> +<body> + +</body> +</html> |