Skip to content

Instantly share code, notes, and snippets.

@Nilanth

Nilanth/.jsx Secret

Created August 24, 2021 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nilanth/53ec8bd2748d4c753166650180b8bbb4 to your computer and use it in GitHub Desktop.
Save Nilanth/53ec8bd2748d4c753166650180b8bbb4 to your computer and use it in GitHub Desktop.
index.js
import Head from 'next/head'
import About from "../components/About";
export default function Home() {
return (
<div className="space-y-14 lg:space-y-24">
<Head>
<title>Create Next App</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main className="max-w-4xl mx-auto mt-16 antialiased">
<About/>
</main>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment