"use client" import { useEffect, useState } from "react" import Head from "next/head" import Script from "next/script" import { cn } from "@/lib/utils" import { Main } from "./main" // https://nextjs.org/docs/pages/building-your-application/optimizing/fonts export default function Page() { const [isLoaded, setLoaded] = useState(false) useEffect(() => { setLoaded(true) }, []) return ( <>
{isLoaded &&
} {/* TODO: use a new tracker This is the kind of project on which we want custom analytics! */}
) }