page.tsx 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. import Image from "next/image";
  2. import Link from "next/link";
  3. export default function Home() {
  4. return (
  5. <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)]">
  6. <main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
  7. <ol className="list-inside list-decimal text-sm text-center sm:text-left font-[family-name:var(--font-geist-mono)]">
  8. <li className="mb-2">
  9. Site coming soon, written in{" "}
  10. <code className="bg-black/[.05] dark:bg-white/[.06] px-1 py-0.5 rounded font-semibold">
  11. next.js
  12. </code>
  13. !
  14. </li>
  15. <li>Meanwhile, enjoy some media.</li>
  16. </ol>
  17. <div className="flex gap-4 items-center flex-col sm:flex-row">
  18. <Link
  19. 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"
  20. href="https://request.vixflix.online/"
  21. target="_blank"
  22. rel="noopener noreferrer"
  23. >
  24. <Image
  25. className="dark:invert"
  26. src="/overseerr.svg"
  27. alt="Vercel logomark"
  28. width={20}
  29. height={20}
  30. />
  31. Go to VixFlixOnline
  32. </Link>
  33. <Link
  34. 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"
  35. href="/api-docs"
  36. >
  37. <Image
  38. className="dark:invert"
  39. src="/file.svg"
  40. alt="API docs icon"
  41. width={20}
  42. height={20}
  43. />
  44. API Documentation
  45. </Link>
  46. <Link
  47. 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"
  48. href="/files"
  49. >
  50. <Image
  51. className="dark:invert"
  52. src="/file.svg"
  53. alt="Files icon"
  54. width={20}
  55. height={20}
  56. />
  57. Upload Files
  58. </Link>
  59. </div>
  60. </main>
  61. </div>
  62. );
  63. }