Archived
1
0
Fork 0
This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues or pull requests.
ethanreece.com/src/layouts/Basic.astro

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>