15 lines
320 B
Text
15 lines
320 B
Text
|
|
---
|
|
const { title = "410 GONE", description = "410 GONE" } = Astro.props;
|
|
import "../styles/globals.css";
|
|
---
|
|
<html lang="ja">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{title}</title>
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|