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>
20 lines
470 B
TypeScript
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>
|
|
);
|
|
}
|