page.tsx 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. import Image from "next/image";
  2. export default function Home() {
  3. return (
  4. <div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
  5. <main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
  6. <Image
  7. className="dark:invert"
  8. src="/vtorio.svg"
  9. alt="Vtor.io logo"
  10. width={180}
  11. height={38}
  12. priority
  13. />
  14. <ol className="list-inside list-decimal text-sm text-center sm:text-left font-[family-name:var(--font-geist-mono)]">
  15. <li className="mb-2">
  16. Site coming soon, written in{" "}
  17. <code className="bg-black/[.05] dark:bg-white/[.06] px-1 py-0.5 rounded font-semibold">
  18. next.js
  19. </code>
  20. !
  21. </li>
  22. <li>Meanwhile, enjoy some media.</li>
  23. </ol>
  24. <div className="flex gap-4 items-center flex-col sm:flex-row">
  25. <a
  26. className="rounded-full border border-solid border-transparent transition-colors flex items-center justify-center bg-foreground text-background gap-2 hover:bg-[#383838] dark:hover:bg-[#ccc] text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5"
  27. href="https://request.vixflix.online/"
  28. target="_blank"
  29. rel="noopener noreferrer"
  30. >
  31. <Image
  32. className="dark:invert"
  33. src="/overseerr.svg"
  34. alt="Vercel logomark"
  35. width={20}
  36. height={20}
  37. />
  38. Go to VixFlixOnline
  39. </a>
  40. <a
  41. className="rounded-full border border-solid border-black/[.08] dark:border-white/[.145] transition-colors flex items-center justify-center hover:bg-[#f2f2f2] dark:hover:bg-[#1a1a1a] hover:border-transparent text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5"
  42. href="/api-docs"
  43. >
  44. <Image
  45. className="dark:invert"
  46. src="/file.svg"
  47. alt="API docs icon"
  48. width={20}
  49. height={20}
  50. />
  51. API Documentation
  52. </a>
  53. <a
  54. className="rounded-full border border-solid border-black/[.08] dark:border-white/[.145] transition-colors flex items-center justify-center hover:bg-[#f2f2f2] dark:hover:bg-[#1a1a1a] hover:border-transparent text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5"
  55. href="/files"
  56. >
  57. <Image
  58. className="dark:invert"
  59. src="/file.svg"
  60. alt="Files icon"
  61. width={20}
  62. height={20}
  63. />
  64. Upload Files
  65. </a>
  66. </div>
  67. </main>
  68. </div>
  69. );
  70. }