AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
export function getStaticProps() {
return {
props: {
now: Date.now(),
},
}
}
export function getStaticPaths() {
return {
paths: ['/first'],
fallback: 'blocking',
}
}
export default function Page() {
return <p>catch-all page</p>
}