24 lines
450 B
TypeScript
24 lines
450 B
TypeScript
---
|
|
interface Props {
|
|
title: string;
|
|
description: string;
|
|
lang?: string;
|
|
}
|
|
|
|
const { title, description, lang = 'en' } = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang={lang}>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{title}</title>
|
|
<meta name="description" content={description} />
|
|
<slot name="styles" />
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|