Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import * as React from 'react'
import Link from 'next/link'
/** Add your relevant code here for the issue to reproduce */
export default function Home() {
return (
<>
<Link href="/will-redirect">Go to a page that calls redirect()</Link>
<Link href="/will-notfound">Go to a page that calls notFound()</Link>
</>
)
}