-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathroot.tsx
More file actions
48 lines (47 loc) · 1.55 KB
/
root.tsx
File metadata and controls
48 lines (47 loc) · 1.55 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
import type React from "react";
import "./styles/globals.css";
export default function Root({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<meta charSet="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="FUNSTACK Static - A React framework without servers"
/>
{/* Open Graph / Facebook */}
<meta property="og:type" content="website" />
<meta
property="og:description"
content="FUNSTACK Static - A React framework without servers"
/>
<meta
property="og:image"
content="https://static.funstack.work/FUNSTACK_Static_Hero_small.png"
/>
{/* Twitter */}
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:description"
content="FUNSTACK Static - A React framework without servers"
/>
<meta
name="twitter:image"
content="https://static.funstack.work/FUNSTACK_Static_Hero_small.png"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossOrigin=""
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
</head>
<body>{children}</body>
</html>
);
}