nomadweb/frontend/src/app/help/page.tsx
eric 48408d3079 feat: complete NomadCNA parity layer with platform APIs and pages
Add services, videos, AI assistant, map/weather, gigs post, notifications settings, static legal pages, Google OAuth, payment router, real-user matching, newsletter, and content submission — all using nomadweb UI patterns.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-30 10:13:17 -05:00

20 lines
483 B
TypeScript

import type { Metadata } from "next";
import SiteShell from "@/components/SiteShell";
import StaticPage from "@/components/StaticPage";
import { STATIC_PAGES } from "@/lib/staticPages";
const page = STATIC_PAGES.help;
export const metadata: Metadata = {
title: `${page.title} · nomadro`,
description: "nomadro 帮助中心与常见问题",
};
export default function HelpPage() {
return (
<SiteShell showFooter>
<StaticPage page={page} />
</SiteShell>
);
}