|
| 1 | +export default function Home() { |
| 2 | + return ( |
| 3 | + <main className="flex flex-col items-center justify-center w-full flex-1 px-20 text-center"> |
| 4 | + <h1 className="text-6xl font-bold"> |
| 5 | + Welcome to{' '} |
| 6 | + <a className="text-blue-600" href="https://nextjs.org"> |
| 7 | + Next.js! |
| 8 | + </a> |
| 9 | + </h1> |
| 10 | + |
| 11 | + <p className="mt-3 text-2xl"> |
| 12 | + Get started by editing{' '} |
| 13 | + <code className="p-3 font-mono text-lg bg-gray-100 rounded-md"> |
| 14 | + pages/index.js |
| 15 | + </code> |
| 16 | + </p> |
| 17 | + |
| 18 | + <div className="flex flex-wrap items-center justify-around max-w-4xl mt-6 sm:w-full"> |
| 19 | + <a |
| 20 | + href="https://nextjs.org/docs" |
| 21 | + className="p-6 mt-6 text-left border w-96 rounded-xl hover:text-blue-600 focus:text-blue-600" |
| 22 | + > |
| 23 | + <h3 className="text-2xl font-bold">Documentation →</h3> |
| 24 | + <p className="mt-4 text-xl"> |
| 25 | + Find in-depth information about Next.js features and API. |
| 26 | + </p> |
| 27 | + </a> |
| 28 | + |
| 29 | + <a |
| 30 | + href="https://nextjs.org/learn" |
| 31 | + className="p-6 mt-6 text-left border w-96 rounded-xl hover:text-blue-600 focus:text-blue-600" |
| 32 | + > |
| 33 | + <h3 className="text-2xl font-bold">Learn →</h3> |
| 34 | + <p className="mt-4 text-xl"> |
| 35 | + Learn about Next.js in an interactive course with quizzes! |
| 36 | + </p> |
| 37 | + </a> |
| 38 | + |
| 39 | + <a |
| 40 | + href="https://github.com/vercel/next.js/tree/master/examples" |
| 41 | + className="p-6 mt-6 text-left border w-96 rounded-xl hover:text-blue-600 focus:text-blue-600" |
| 42 | + > |
| 43 | + <h3 className="text-2xl font-bold">Examples →</h3> |
| 44 | + <p className="mt-4 text-xl"> |
| 45 | + Discover and deploy boilerplate example Next.js projects. |
| 46 | + </p> |
| 47 | + </a> |
| 48 | + |
| 49 | + <a |
| 50 | + href="https://vercel.com/import?filter=next.js&utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app" |
| 51 | + className="p-6 mt-6 text-left border w-96 rounded-xl hover:text-blue-600 focus:text-blue-600" |
| 52 | + > |
| 53 | + <h3 className="text-2xl font-bold">Deploy →</h3> |
| 54 | + <p className="mt-4 text-xl"> |
| 55 | + Instantly deploy your Next.js site to a public URL with Vercel. |
| 56 | + </p> |
| 57 | + </a> |
| 58 | + </div> |
| 59 | + </main> |
| 60 | + ); |
| 61 | +} |
0 commit comments