Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import Link from 'next/link'
export default function Layout({ children }) {
return (
<html>
<body>
{children}
<hr />
<Link href="/page-with-h1" id="page-with-h1">
/page-with-h1
</Link>
<br />
<Link href="/page-with-title" id="page-with-title">
/page-with-title
</Link>
<br />
<Link href="/noop-layout/page-1" id="noop-layout-page-1">
/noop-layout/page-1
</Link>
<br />
<Link href="/noop-layout/page-2" id="noop-layout-page-2">
/noop-layout/page-2
</Link>
<br />
</body>
</html>
)
}