bigbossmonster's picture
Upload pages/index.js with huggingface_hub
2ad78e2 verified
import Head from 'next/head'
import Link from 'next/link'
export default function Home() {
return (
<div className="min-h-screen bg-gray-100">
<Head>
<title>GFHGGFHGFH</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<header className="bg-white shadow-sm">
<div className="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8 flex justify-between items-center">
<h1 className="text-2xl font-bold text-gray-900">GFHGGFHGFH</h1>
<Link href="https://huggingface.co/spaces/akhaliq/anycoder" className="text-blue-600 hover:text-blue-800">
Built with anycoder
</Link>
</div>
</header>
<main className="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8">
<div className="px-4 py-6 sm:px-0">
<div className="border-4 border-dashed border-gray-200 rounded-lg h-96 flex items-center justify-center">
<p className="text-xl text-gray-500">Welcome to GFHGGFHGFH</p>
</div>
</div>
</main>
</div>
)
}