Files
Astro-Component/src/layouts/Base.astro
T
2025-08-19 15:54:50 +05:30

26 lines
623 B
Plaintext

---
import "../styles/global.css";
import { cn } from "../utils/cn";
const attributes = Astro.props;
---
<html lang="en">
<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(
"wr:bg-white wr:dark:bg-background-800 wr:text-black wr:dark:text-white",
attributes.class,
)}
{...attributes}
>
<slot />
</body>
</html>