import type { GetStaticProps } from 'next' import { Home } from '../components/Home' import { fetchData } from '../services/fetchData' export default function HomePage() { return } export const getStaticProps: GetStaticProps = async () => { const initialData = await fetchData() return { props: { initialData }, revalidate: 1 } }