|
@@ -1,16 +1,11 @@
|
|
|
import Image from "next/image";
|
|
import Image from "next/image";
|
|
|
-import { LoginButton, RegisterButton } from "@/app/components/authButtons";
|
|
|
|
|
|
|
+import Link from "next/link";
|
|
|
|
|
|
|
|
export default function Home() {
|
|
export default function Home() {
|
|
|
return (
|
|
return (
|
|
|
<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)]">
|
|
<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)]">
|
|
|
<main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
|
|
<main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
|
|
|
|
|
|
|
|
- <div className="flex gap-4 items-center flex-col sm:flex-row">
|
|
|
|
|
- <LoginButton />
|
|
|
|
|
- <RegisterButton />
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
<ol className="list-inside list-decimal text-sm text-center sm:text-left font-[family-name:var(--font-geist-mono)]">
|
|
<ol className="list-inside list-decimal text-sm text-center sm:text-left font-[family-name:var(--font-geist-mono)]">
|
|
|
<li className="mb-2">
|
|
<li className="mb-2">
|
|
|
Site coming soon, written in{" "}
|
|
Site coming soon, written in{" "}
|
|
@@ -23,7 +18,7 @@ export default function Home() {
|
|
|
</ol>
|
|
</ol>
|
|
|
|
|
|
|
|
<div className="flex gap-4 items-center flex-col sm:flex-row">
|
|
<div className="flex gap-4 items-center flex-col sm:flex-row">
|
|
|
- <a
|
|
|
|
|
|
|
+ <Link
|
|
|
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"
|
|
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"
|
|
|
href="https://request.vixflix.online/"
|
|
href="https://request.vixflix.online/"
|
|
|
target="_blank"
|
|
target="_blank"
|
|
@@ -37,8 +32,8 @@ export default function Home() {
|
|
|
height={20}
|
|
height={20}
|
|
|
/>
|
|
/>
|
|
|
Go to VixFlixOnline
|
|
Go to VixFlixOnline
|
|
|
- </a>
|
|
|
|
|
- <a
|
|
|
|
|
|
|
+ </Link>
|
|
|
|
|
+ <Link
|
|
|
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"
|
|
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"
|
|
|
href="/api-docs"
|
|
href="/api-docs"
|
|
|
>
|
|
>
|
|
@@ -50,8 +45,8 @@ export default function Home() {
|
|
|
height={20}
|
|
height={20}
|
|
|
/>
|
|
/>
|
|
|
API Documentation
|
|
API Documentation
|
|
|
- </a>
|
|
|
|
|
- <a
|
|
|
|
|
|
|
+ </Link>
|
|
|
|
|
+ <Link
|
|
|
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"
|
|
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"
|
|
|
href="/files"
|
|
href="/files"
|
|
|
>
|
|
>
|
|
@@ -63,7 +58,7 @@ export default function Home() {
|
|
|
height={20}
|
|
height={20}
|
|
|
/>
|
|
/>
|
|
|
Upload Files
|
|
Upload Files
|
|
|
- </a>
|
|
|
|
|
|
|
+ </Link>
|
|
|
</div>
|
|
</div>
|
|
|
</main>
|
|
</main>
|
|
|
</div>
|
|
</div>
|