data/method/chatgpt_web/ChatGPT-Next-Web-main/app/page.tsx

17 lines
332 B
TypeScript
Raw Normal View History

2024-01-29 10:44:43 +08:00
import { Analytics } from "@vercel/analytics/react";
import { Home } from "./components/home";
import { getServerSideConfig } from "./config/server";
const serverConfig = getServerSideConfig();
export default async function App() {
return (
<>
<Home />
{serverConfig?.isVercel && <Analytics />}
</>
);
}