import Card from '../components/Card' import { useSession } from 'next-auth/client' import { Text } from "@chakra-ui/react" import Hero from '../components/Hero/Hero' import { CTA } from '../components/CTA' import { Features } from '../components/Features/Features' import { Footer } from '../components/Footer/Footer' import { motion } from 'framer-motion' import StatCard from '../components/StatCard' export default function Home() { const container = { hidden: { opacity: 1, scale: 0 }, visible: { opacity: 1, scale: 1, transition: { delayChildren: 0.4, staggerChildren: 0.3 } } } const [session, loading] = useSession() return ( <> {!session && <>