nomadweb/frontend/src/app/terms/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
470 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.terms;
export const metadata: Metadata = {
title: `${page.title} · nomadro`,
description: "nomadro 服务条款",
};
export default function TermsPage() {
return (
<SiteShell showFooter>
<StaticPage page={page} />
</SiteShell>
);
}