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>
19 lines
544 B
TypeScript
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>
|
|
);
|
|
}
|