Made a lot of the front end

This commit is contained in:
2024-11-29 19:37:14 -06:00
parent 04a6322b55
commit 6ff62ca0a6
37 changed files with 1360 additions and 70 deletions

View File

@ -0,0 +1,27 @@
import { Outfit as FontSans } from "next/font/google";
import { cn } from "~/lib/utils"
import Link from "next/link"
const fontSans = FontSans({
subsets: ["latin"],
variable: "--font-sans",
});
export default function Hero() {
return (
<Link href="/">
<div className="flex flex-col justify-start items-start">
<h1 className={cn("text-4xl md:text-5xl lg:text-6xl font-bold text-center font-sans antialiased",
fontSans.variable)}
>
TENANT
</h1>
<h1 className={cn("text-4xl md:text-5xl lg:text-6xl font-bold text-center font-sans antialiased",
fontSans.variable)}
>
PORTAL
</h1>
</div>
</Link>
);
};