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>
17 lines
407 B
TypeScript
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>
|
|
);
|
|
}
|