|
@@ -1,23 +1,14 @@
|
|
|
import Image from "next/image";
|
|
import Image from "next/image";
|
|
|
-import { LoginButton, LogoutButton, RegisterButton } from "@/app/components/authButtons";
|
|
|
|
|
|
|
+import { LoginButton, RegisterButton } from "@/app/components/authButtons";
|
|
|
|
|
|
|
|
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">
|
|
|
- <Image
|
|
|
|
|
- className="dark:invert"
|
|
|
|
|
- src="/vtorio.svg"
|
|
|
|
|
- alt="Vtor.io logo"
|
|
|
|
|
- width={180}
|
|
|
|
|
- height={38}
|
|
|
|
|
- priority
|
|
|
|
|
- />
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<div className="flex gap-4 items-center flex-col sm:flex-row">
|
|
<div className="flex gap-4 items-center flex-col sm:flex-row">
|
|
|
<LoginButton />
|
|
<LoginButton />
|
|
|
<RegisterButton />
|
|
<RegisterButton />
|
|
|
- <LogoutButton />
|
|
|
|
|
</div>
|
|
</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)]">
|