Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import Link from 'next/link'
export default function RootLayout({ children }) {
return (
<html>
<body>
{children}
<Link href="/se/static-prefetch" id="static-prefetch">
Static Prefetch
</Link>
<Link href="/se/dynamic-area/slug" id="dynamic-prefetch">
Dynamic Prefetch
</Link>
</body>
</html>
)
}