Skip to content

Commit 5e62c6a

Browse files
Add SEO metadata and create robots.txt and sitemap.xml files
1 parent a204ee1 commit 5e62c6a

3 files changed

Lines changed: 43 additions & 1 deletion

File tree

index.html

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,37 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
7+
<!-- ── Primary SEO ── -->
8+
<title>Graphical Playground — Build Graphics Engines from Scratch | Creative Coding &amp; Canvas Experiments</title>
9+
<meta name="description" content="Graphical Playground is an interactive, browser-based platform where students deconstruct and rebuild graphics-engine systems from the ground up — from raw Vulkan commands to full render pipelines. Explore creative coding, canvas experiments, and real-time graphics programming.">
10+
<meta name="keywords" content="graphics programming, creative coding, canvas experiments, Vulkan, render pipeline, game engine architecture, real-time rendering, WebGPU, GPU programming, deconstructionist pedagogy">
11+
<meta name="author" content="Graphical Playground">
12+
13+
<!-- ── Canonical ── -->
14+
<link rel="canonical" href="https://graphical-playground.com/">
15+
16+
<!-- ── Open Graph (Facebook / LinkedIn / Discord) ── -->
17+
<meta property="og:type" content="website">
18+
<meta property="og:site_name" content="Graphical Playground">
19+
<meta property="og:title" content="Graphical Playground — Build Graphics Engines from Scratch">
20+
<meta property="og:description" content="An interactive platform where students deconstruct and rebuild graphics-engine systems — from raw Vulkan commands to full render pipelines. Creative coding &amp; canvas experiments.">
21+
<meta property="og:url" content="https://graphical-playground.com/">
22+
<meta property="og:image" content="https://graphical-playground.com/assets/preview-image.png">
23+
<meta property="og:image:width" content="1200">
24+
<meta property="og:image:height" content="630">
25+
<meta property="og:image:alt" content="Graphical Playground — Build Graphics Engines from Scratch">
26+
27+
<!-- ── Twitter Card ── -->
28+
<meta name="twitter:card" content="summary_large_image">
29+
<meta name="twitter:title" content="Graphical Playground — Build Graphics Engines from Scratch">
30+
<meta name="twitter:description" content="An interactive platform where students deconstruct and rebuild graphics-engine systems — from raw Vulkan commands to full render pipelines.">
31+
<meta name="twitter:image" content="https://graphical-playground.com/assets/preview-image.png">
32+
<meta name="twitter:image:alt" content="Graphical Playground — Build Graphics Engines from Scratch">
33+
34+
<!-- ── Favicons & Assets ── -->
635
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
736
<link rel="stylesheet" href="style.css">
8-
<title>Graphical Playground</title>
937
</head>
1038
<body>
1139

robots.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Graphical Playground — robots.txt
2+
User-agent: *
3+
Allow: /
4+
5+
Sitemap: https://graphical-playground.com/sitemap.xml

sitemap.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://graphical-playground.com/</loc>
5+
<lastmod>2026-02-15</lastmod>
6+
<changefreq>weekly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
</urlset>

0 commit comments

Comments
 (0)