feat: add contact/report page with Discord webhook integration

This commit is contained in:
2026-04-28 02:09:55 +08:00
parent b1cdfae6b7
commit e14dafde62
2 changed files with 368 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Contact & Report",
description: "Report issues, suggest features, or send feedback to the DeckyVault team.",
robots: { index: false, follow: true },
}
export default function ContactLayout({ children }: { children: React.ReactNode }) {
return children
}