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

17 lines
407 B
TypeScript

import type { Metadata } from "next";
import SiteShell from "@/components/SiteShell";
import AiAssistantClient from "@/components/AiAssistantClient";
export const metadata: Metadata = {
title: "AI 旅居助手 · nomadro",
description: "智能推荐下一站游民城市",
};
export default function AiPage() {
return (
<SiteShell showFooter>
<AiAssistantClient />
</SiteShell>
);
}