diff --git a/components/html.astro b/components/html.astro new file mode 100644 index 0000000..e97502c --- /dev/null +++ b/components/html.astro @@ -0,0 +1,46 @@ +--- +import '../styles/global.css'; +export interface Props { + title?: string; + description?: string; + lang?: string; + charset?: string; +} + +const { title = 'Light Code', description = 'html', lang = 'zh-CN', charset = 'UTF-8' } = Astro.props; +--- + + + +
+ + + +