Skip to content

Commit 86fb37f

Browse files
committed
SEO: robots.txt, sitemap, improved title, canonical, JSON-LD
1 parent c74cb2a commit 86fb37f

3 files changed

Lines changed: 29 additions & 4 deletions

File tree

src/app.html

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,24 @@
44
<meta charset="utf-8" />
55
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
7-
<title>PathView</title>
8-
<meta name="description" content="Visual node editor for building and simulating dynamic systems with PathSim" />
7+
<title>PathView — Visual Block Diagram Simulation Editor</title>
8+
<meta name="description" content="Build and simulate dynamic systems visually in your browser. Drag-and-drop block diagram editor powered by PathSim. No installation required." />
9+
<link rel="canonical" href="https://view.pathsim.org/" />
910
<meta property="og:type" content="website" />
10-
<meta property="og:title" content="PathView" />
11-
<meta property="og:description" content="Visual node editor for building and simulating dynamic systems with PathSim" />
11+
<meta property="og:title" content="PathView — Visual Block Diagram Simulation Editor" />
12+
<meta property="og:description" content="Build and simulate dynamic systems visually in your browser. Drag-and-drop block diagram editor powered by PathSim." />
13+
<script type="application/ld+json">
14+
{
15+
"@context": "https://schema.org",
16+
"@type": "SoftwareApplication",
17+
"name": "PathView",
18+
"url": "https://view.pathsim.org",
19+
"applicationCategory": "Scientific Software",
20+
"operatingSystem": "Any",
21+
"description": "Visual node editor for building and simulating dynamic systems with PathSim.",
22+
"author": { "@type": "Person", "name": "Milan Rother", "url": "https://milanrother.com" }
23+
}
24+
</script>
1225
<meta property="og:image" content="https://view.pathsim.org/pathview_logo.png" />
1326
<meta property="og:url" content="https://view.pathsim.org" />
1427
<meta name="twitter:card" content="summary_large_image" />

static/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://view.pathsim.org/sitemap.xml

static/sitemap.xml

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

0 commit comments

Comments
 (0)