Skip to content

Commit 5d81cd0

Browse files
committed
fix(site): redirect install roadmap and releases pages
1 parent 1c8b651 commit 5d81cd0

3 files changed

Lines changed: 12 additions & 41 deletions

File tree

vix-site/public/data/github_stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"repo": "vixcpp/vix",
3-
"fetched_at": "2026-05-26T23:23:18.042Z",
3+
"fetched_at": "2026-05-28T09:11:31.536Z",
44
"stars": 441,
55
"forks": 32,
66
"open_issues": 1,

vix-site/src/data/github_stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"repo": "vixcpp/vix",
3-
"fetched_at": "2026-05-26T23:23:18.042Z",
3+
"fetched_at": "2026-05-28T09:11:31.536Z",
44
"stars": 441,
55
"forks": 32,
66
"open_issues": 1,

vix-site/src/router/index.js

Lines changed: 10 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { createRouter, createWebHistory } from "vue-router";
22

33
import Home from "../pages/Home.vue";
4-
import Install from "../pages/Install.vue";
54
import Community from "../pages/Community.vue";
65
import Support from "../pages/Support.vue";
76
import Roadmap from "../pages/Roadmap.vue";
@@ -50,39 +49,18 @@ const routes = [
5049

5150
{
5251
path: "/install",
53-
name: "install",
54-
component: Install,
55-
meta: {
56-
seo: {
57-
title: "Install Vix.cpp",
58-
description:
59-
"Install Vix.cpp, create your first project, and start building native C++ applications.",
60-
path: "/install",
61-
type: "website",
62-
},
52+
redirect: () => {
53+
window.location.href =
54+
"https://docs.vixcpp.com/getting-started/installation";
55+
return "/";
6356
},
6457
},
6558

6659
{
6760
path: "/roadmap",
68-
name: "roadmap",
69-
component: Roadmap,
70-
meta: {
71-
seo: {
72-
title: "Roadmap",
73-
description:
74-
"Explore the Vix.cpp roadmap: runtime direction, CLI improvements, modules, registry, tooling, and long-term platform goals.",
75-
path: "/roadmap",
76-
type: "website",
77-
jsonLd: {
78-
"@context": "https://schema.org",
79-
"@type": "WebPage",
80-
name: "Vix.cpp Roadmap",
81-
description:
82-
"The public roadmap for Vix.cpp, covering runtime, CLI, modules, registry, tooling, and long-term platform direction.",
83-
url: "https://vixcpp.com/roadmap",
84-
},
85-
},
61+
redirect: () => {
62+
window.location.href = "https://blog.vixcpp.com/posts/roadmap/";
63+
return "/";
8664
},
8765
},
8866

@@ -103,16 +81,9 @@ const routes = [
10381

10482
{
10583
path: "/about/releases",
106-
name: "releases",
107-
component: Releases,
108-
meta: {
109-
seo: {
110-
title: "Releases",
111-
description:
112-
"Read Vix.cpp release notes, version updates, and stability information.",
113-
path: "/about/releases",
114-
type: "website",
115-
},
84+
redirect: () => {
85+
window.location.href = "https://blog.vixcpp.com/posts/changelog/";
86+
return "/";
11687
},
11788
},
11889

0 commit comments

Comments
 (0)