32 lines
900 B
Text
32 lines
900 B
Text
---
|
|
export interface Props {
|
|
title: string
|
|
description: string
|
|
}
|
|
|
|
const { title, description } = Astro.props
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="description" content={description} />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<link rel="stylesheet" href="/fonts/fonts.css" />
|
|
<title>{title}</title>
|
|
</head>
|
|
<body>
|
|
<div
|
|
class="relative flex min-h-screen w-screen flex-col bg-background font-main text-font"
|
|
>
|
|
<div
|
|
class="absolute h-full w-full bg-contain bg-repeat opacity-20 heropattern-circuitboard-font/10"
|
|
>
|
|
</div>
|
|
<slot />
|
|
</div>
|
|
</body>
|
|
</html>
|