Skip to content

Commit

Permalink
make the admin panel font a bit nicer :)
Browse files Browse the repository at this point in the history
  • Loading branch information
callmeehko authored Oct 15, 2024
1 parent 16a85ef commit a386efe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { LoginButton } from "@/components/common/auth/LoginButton";
import { Metadata } from "next";
import { Comic_Neue } from "next/font/google";
import { Sixtyfour_Convergence } from "next/font/google";

import { Card, Flex, Heading, Text } from "@radix-ui/themes";

import styles from "./home.module.css";

const comicNeue = Comic_Neue({ subsets: ["latin"], weight: "700" });
const sixtyfourConvergence = Sixtyfour_Convergence({ subsets: ["latin"], weight: "700" });

export default function Home() {
return (
Expand All @@ -17,7 +17,7 @@ export default function Home() {
>
<Card className="p-4">
<Flex direction="column" gap="4">
<Heading as="h1" size="8" className={comicNeue.className}>
<Heading as="h1" size="8" className={sixtyfourConvergence.className}>
Revolt Admin Panel
</Heading>

Expand Down

0 comments on commit a386efe

Please sign in to comment.