feat: SEO overhaul — expanded sitemap, JSON-LD, canonical URLs, search metadata

This commit is contained in:
2026-04-27 16:05:31 +08:00
parent 9a6db98d42
commit 713b309f74
5 changed files with 96 additions and 19 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Search Games",
description: "Search for games and find benchmarks, settings, and performance data on DeckyVault.",
alternates: { canonical: "https://deckyvault.xyz/search" },
robots: { index: false },
}
export default function SearchLayout({ children }: { children: React.ReactNode }) {
return children
}