-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathBaseLayout.astro
More file actions
54 lines (46 loc) · 1.98 KB
/
BaseLayout.astro
File metadata and controls
54 lines (46 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
import '../styles/global.css';
interface Props {
title: string;
description?: string;
}
const { title, description = "Feast is an end-to-end open source feature store for machine learning. It allows teams to define, manage, discover, and serve features." } = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{title}</title>
<meta name="description" content={description}>
<!-- SEO Meta Tags -->
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<!-- Open Graph Meta Tags -->
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content={title}>
<meta property="og:description" content={description}>
<meta property="og:url" content="https://feast.dev/">
<meta property="og:site_name" content="Feast">
<meta property="og:image" content="https://feast.dev/wp-content/uploads/2023/01/feast-og@2x.png">
<meta property="og:image:width" content="1201">
<meta property="og:image:height" content="630">
<meta property="og:image:type" content="image/png">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://feast.dev/wp-content/uploads/2023/01/feast-og@2x.png">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&family=IBM+Plex+Sans:wght@400&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="/images/feast_icon-black.png" sizes="32x32">
<link rel="icon" href="/images/feast_icon-black.png" sizes="192x192">
<link rel="apple-touch-icon" href="/images/feast_icon-black.png">
</head>
<body class="bg-white">
<slot name="header" />
<main>
<slot />
</main>
<slot name="footer" />
</body>
</html>