diff --git a/.vitepress/config/en.ts b/.vitepress/config/en.ts
index 85b492c0d9c..7740c2f5f8e 100644
--- a/.vitepress/config/en.ts
+++ b/.vitepress/config/en.ts
@@ -26,7 +26,6 @@ export const enConfig = defineLocaleConfig("root", {
{ text: "Blog", link: "/blog/2025-12-08-type-aware-alpha" },
{ text: "Team", link: "/team" },
{ text: "Release Notes", link: "https://github.com/oxc-project/oxc/releases" },
- { text: "Branding", link: "/branding" },
{ text: "Website GitHub", link: "https://github.com/oxc-project/oxc-project.github.io" },
],
},
diff --git a/.vitepress/config/shared.ts b/.vitepress/config/shared.ts
index 4ad6ddf7591..bf04f379a69 100644
--- a/.vitepress/config/shared.ts
+++ b/.vitepress/config/shared.ts
@@ -27,7 +27,7 @@ const head: HeadConfig[] = [
"meta",
{
property: "og:image",
- content: "https://cdn.jsdelivr.net/gh/oxc-project/oxc-assets/preview-universal.png",
+ content: "/og.jpg",
},
],
// Twitter (X)
@@ -37,7 +37,7 @@ const head: HeadConfig[] = [
"meta",
{
name: "twitter:image",
- content: "https://cdn.jsdelivr.net/gh/oxc-project/oxc-assets/preview-universal.png",
+ content: "/og.jpg",
},
],
// banner
@@ -138,7 +138,7 @@ export const sharedConfig = defineConfig({
},
},
footer: {
- copyright: `© 2025 VoidZero Inc. and Oxc contributors.`,
+ copyright: `© ${new Date().getFullYear()} VoidZero Inc. and Oxc contributors.`,
nav: [
{
title: "Oxc",
diff --git a/.vitepress/theme/landing/Layout.vue b/.vitepress/theme/landing/Layout.vue
index dc3d6c20a1a..0f3257004e6 100644
--- a/.vitepress/theme/landing/Layout.vue
+++ b/.vitepress/theme/landing/Layout.vue
@@ -12,7 +12,6 @@ import FeatureResolver from "./FeatureResolver.vue";
import FeatureTransformer from "./FeatureTransformer.vue";
import FeatureMinifier from "./FeatureMinifier.vue";
import Sponsors from "@voidzero-dev/vitepress-theme/src/components/oss/Sponsors.vue";
-import Spacer from "@voidzero-dev/vitepress-theme/src/components/shared/Spacer.vue";
import Footer from "@voidzero-dev/vitepress-theme/src/components/oss/Footer.vue";
@@ -30,7 +29,6 @@ import Footer from "@voidzero-dev/vitepress-theme/src/components/oss/Footer.vue"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-


