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