Skip to content

Commit f4bb0c7

Browse files
committed
Add meta tags
1 parent 7d60f30 commit f4bb0c7

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

src/entry-server.jsx

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,31 @@ export default createHandler(() => (
88
<head>
99
<meta charset="utf-8" />
1010
<meta name="viewport" content="width=device-width, initial-scale=1" />
11-
<link rel="icon" href="/favicon.ico" />
11+
<link rel="icon" href="/favicon.svg" />
12+
13+
{/* Basic Meta Tags */}
14+
<title>NixCon 2025 - Switzerland, September 5-7, 2025</title>
15+
<meta name="description" content="NixCon 2025 is a community-organized conference about Nix and NixOS taking place in Rapperswil-Jona, Switzerland on September 5-7, 2025." />
16+
<meta name="keywords" content="NixCon, Nix, NixOS, conference, Switzerland, Rapperswil-Jona, 2025" />
17+
<meta name="author" content="NixCon Organizers" />
18+
19+
{/* Open Graph Tags */}
20+
<meta property="og:title" content="NixCon 2025 - Switzerland" />
21+
<meta property="og:description" content="Join us for NixCon 2025 in Rapperswil-Jona, Switzerland on September 5-7, 2025." />
22+
<meta property="og:type" content="website" />
23+
<meta property="og:url" content="https://2025.nixcon.org" />
24+
<meta property="og:image" content="https://2025.nixcon.org/Screenshot.jpg" />
25+
<meta property="og:site_name" content="NixCon 2025" />
26+
27+
{/* Twitter Card Tags */}
28+
<meta name="twitter:card" content="summary_large_image" />
29+
<meta name="twitter:title" content="NixCon 2025 - Switzerland" />
30+
<meta name="twitter:description" content="Join us for NixCon 2025 in Rapperswil-Jona, Switzerland on September 5-7, 2025." />
31+
<meta name="twitter:image" content="https://2025.nixcon.org/Screenshot.jpg" />
32+
33+
{/* Theme Color */}
34+
<meta name="theme-color" content="#f34379" />
35+
1236
{assets}
1337
</head>
1438
<body>

0 commit comments

Comments
 (0)