1
0
Fork 0

feat: home page (when logged out)

fix-1
Paul Makles 2023-07-29 20:07:47 +01:00
parent 7ef4a1ed4a
commit b1670419b1
No known key found for this signature in database
GPG Key ID: 5059F398521BB0F6
1 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,19 @@
import { Button } from "@/components/ui/button";
import { Comic_Neue } from "next/font/google";
const comicNeue = Comic_Neue({ subsets: ["latin"], weight: "700" });
export default function Home() {
return <main>helo</main>;
return (
<main
className={`${comicNeue.className} flex flex-col justify-center items-center gap-4 h-[100vh]`}
>
<h1 className="text-5xl">revolt admin panel</h1>
<Button variant="outline">login with revolt sso</Button>
<img
src={`https://api.gifbox.me/file/posts/w7iUJfiyKA_zGkHN7Rr625WpaTHYgm4v.webp`}
height={320}
/>
</main>
);
}