import type { GetStaticProps, NextPage } from 'next'; import { serverSideTranslations } from 'next-i18next/serverSideTranslations'; import Tilt from 'react-parallax-tilt'; import HeroBackground from '@/components/home/Background'; import Footer from '@/components/home/Footer'; import Header from '@/components/home/Header'; import HeroPattern from '@/components/home/Pattern'; import LogoSection from '@/components/home/sections/Logo'; import StatsSection from '@/components/home/sections/Stats'; import { defaultTiltProps } from '@/constants/tilt'; export const getStaticProps: GetStaticProps = async ({ locale = 'en' }) => ({ props: { ...(await serverSideTranslations(locale, ['common', 'modals', 'landing'])), }, }); const Home: NextPage = () => (
Finally,

A free and open-source resume builder

Reactive Resume is a free and open-source resume builder that simplifies the tasks of creating, updating, and sharing your resume.

Reactive Resume Screenshot - Builder Screen
); export default Home;