mirror of
https://github.com/Alee14/shiftos-website.git
synced 2025-04-19 19:00:23 +00:00
37 lines
1,009 B
Text
37 lines
1,009 B
Text
---
|
|
interface Props {
|
|
title: string;
|
|
description: string;
|
|
}
|
|
|
|
const { title = "ShiftOS: The Archive", description } = Astro.props;
|
|
import '../styles/style.css';
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
|
|
|
<!-- Default Metadata -->
|
|
<meta name="title" content={title} />
|
|
<meta name="description" content={description} />
|
|
|
|
<!-- Open Graph Metadata -->
|
|
<meta property="og:title" content={title} />
|
|
<meta property="og:description" content={description} />
|
|
<meta property="og:image" content="https://shiftos.alee14.me/shiftos.png" />
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta name="theme-color" content="#000000"/>
|
|
<meta name="generator" content={Astro.generator} />
|
|
|
|
<title>{title}</title>
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|