import type { GetStaticProps, NextPage } from 'next'; import { serverSideTranslations } from 'next-i18next/serverSideTranslations'; import Footer from '@/components/home/Footer'; import Header from '@/components/home/Header'; import HeroSection from '@/components/home/sections/Hero'; import LogoSection from '@/components/home/sections/Logo'; import StatsSection from '@/components/home/sections/Stats'; export const getStaticProps: GetStaticProps = async ({ locale = 'en' }) => ({ props: { ...(await serverSideTranslations(locale, ['common', 'modals', 'landing'])), }, }); const Home: NextPage = () => (
{/* Hero */} {/* Logo Cloud */} {/* Statistics */}
); export default Home;