fix: add metadata exports for /compare and /profile pages (Task 4)

This commit is contained in:
2026-05-25 19:31:38 +08:00
parent b14f03e2b7
commit a2e94ca328
2 changed files with 24 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Profile",
description:
"Your DeckyVault profile — saved games, benchmark contributions, and performance history.",
robots: { index: false, follow: false },
}
export default function ProfileLayout({ children }: { children: React.ReactNode }) {
return children
}