first commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
---
|
||||
import "../styles/global.css";
|
||||
import { cn } from "../utils/cn";
|
||||
|
||||
const attributes = Astro.props;
|
||||
---
|
||||
|
||||
<html lang="en" data-theme="" data-color="sunset">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>Astro</title>
|
||||
</head>
|
||||
<body
|
||||
class={cn(
|
||||
"bg-white dark:bg-neutral-700 text-black dark:text-white",
|
||||
attributes.class,
|
||||
)}
|
||||
{...attributes}
|
||||
>
|
||||
<slot />
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user