page.tsx 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. import Image from 'next/image'
  2. import { Inter } from 'next/font/google'
  3. import styles from './page.module.css'
  4. const inter = Inter({ subsets: ['latin'] })
  5. export default function Home() {
  6. return (
  7. <main className={styles.main}>
  8. <div className={styles.description}>
  9. <p>
  10. Get started by editing&nbsp;
  11. <code className={styles.code}>app/page.tsx</code>
  12. </p>
  13. <div>
  14. <a
  15. href="https://vercel.com?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
  16. target="_blank"
  17. rel="noopener noreferrer"
  18. >
  19. By{' '}
  20. <Image
  21. src="/vercel.svg"
  22. alt="Vercel Logo"
  23. className={styles.vercelLogo}
  24. width={100}
  25. height={24}
  26. priority
  27. />
  28. </a>
  29. </div>
  30. </div>
  31. <div className={styles.center}>
  32. <Image
  33. className={styles.logo}
  34. src="/next.svg"
  35. alt="Next.js Logo"
  36. width={180}
  37. height={37}
  38. priority
  39. />
  40. <div className={styles.thirteen}>
  41. <Image src="/thirteen.svg" alt="13" width={40} height={31} priority />
  42. </div>
  43. </div>
  44. <div className={styles.grid}>
  45. <a
  46. href="https://beta.nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
  47. className={styles.card}
  48. target="_blank"
  49. rel="noopener noreferrer"
  50. >
  51. <h2 className={inter.className}>
  52. Docs <span>-&gt;</span>
  53. </h2>
  54. <p className={inter.className}>
  55. Find in-depth information about Next.js features and API.
  56. </p>
  57. </a>
  58. <a
  59. href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
  60. className={styles.card}
  61. target="_blank"
  62. rel="noopener noreferrer"
  63. >
  64. <h2 className={inter.className}>
  65. Templates <span>-&gt;</span>
  66. </h2>
  67. <p className={inter.className}>Explore the Next.js 13 playground.</p>
  68. </a>
  69. <a
  70. href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
  71. className={styles.card}
  72. target="_blank"
  73. rel="noopener noreferrer"
  74. >
  75. <h2 className={inter.className}>
  76. Deploy <span>-&gt;</span>
  77. </h2>
  78. <p className={inter.className}>
  79. Instantly deploy your Next.js site to a shareable URL with Vercel.
  80. </p>
  81. </a>
  82. </div>
  83. </main>
  84. )
  85. }