Files
karkarcar-astro/src/layouts/Base.astro

19 lines
299 B
Plaintext

---
interface Props {
title?: string;
}
const { title = "KarkarCar" } = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>{title}</title>
</head>
<body>
<slot />
</body>
</html>