nomadweb/frontend/src/app/services/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

19 lines
544 B
TypeScript

import type { Metadata } from "next";
import SiteShell from "@/components/SiteShell";
import ServicesClient from "@/components/ServicesClient";
import { api } from "@/lib/api";
export const metadata: Metadata = {
title: "游民服务 · nomadro",
description: "签证咨询、税务评估、落地陪跑等认证服务",
};
export default async function ServicesPage() {
const services = await api.getServices().catch(() => []);
return (
<SiteShell showFooter>
<ServicesClient services={services} />
</SiteShell>
);
}