work-house / app /page.tsx
maltose1's picture
Upload 365 files
853f6aa verified
raw
history blame contribute delete
391 Bytes
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 />
</>
)}
</>
);
}