Skip to content

Commit 9026559

Browse files
committed
feat: enhance website metadata and add Open Graph/Twitter Card support
1 parent 3eeabbc commit 9026559

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

.github/workflows/wiki.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,9 @@ jobs:
9191
export PATH="$HOME/.markflow:$PATH"
9292
mkdir -p site
9393
94-
# Copy website landing page to site root
94+
# Copy website landing page and assets to site root
9595
cp website/index.html site/index.html
96+
cp website/og-image.png site/og-image.png
9697
touch site/.nojekyll
9798
echo "zyntax.org" > site/CNAME
9899

website/index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Zyntax — Compiler Infrastructure</title>
7+
8+
<!-- Open Graph -->
9+
<meta property="og:type" content="website">
10+
<meta property="og:title" content="Zyntax — Compiler Infrastructure">
11+
<meta property="og:description" content="A high-performance, multi-paradigm compiler infrastructure with an advanced type system, tiered JIT compilation, and async/await runtime — everything you need to create modern programming languages.">
12+
<meta property="og:url" content="https://zyntax.org">
13+
<meta property="og:image" content="https://zyntax.org/og-image.png">
14+
<meta property="og:image:width" content="1200">
15+
<meta property="og:image:height" content="608">
16+
<meta property="og:site_name" content="Zyntax">
17+
18+
<!-- Twitter Card -->
19+
<meta name="twitter:card" content="summary_large_image">
20+
<meta name="twitter:title" content="Zyntax — Compiler Infrastructure">
21+
<meta name="twitter:description" content="Build languages. Not compilers. A high-performance compiler infrastructure with advanced type system, tiered JIT, and async/await runtime.">
22+
<meta name="twitter:image" content="https://zyntax.org/og-image.png">
23+
24+
<!-- General Meta -->
25+
<meta name="description" content="A high-performance, multi-paradigm compiler infrastructure with an advanced type system, tiered JIT compilation, and async/await runtime — everything you need to create modern programming languages.">
26+
727
<link rel="preconnect" href="https://fonts.googleapis.com">
828
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
929
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Unbounded:wght@200..900&display=swap" rel="stylesheet">

website/og-image.png

311 KB
Loading

website/zyn-logo-512.png

10 KB
Loading

0 commit comments

Comments
 (0)