feat: start page footer, general styling

This commit is contained in:
theoleuthardt 2025-02-08 14:13:04 +01:00
parent f7b0538ac7
commit 39be7de9c0
3 changed files with 43 additions and 6 deletions

View file

@ -1,4 +1,5 @@
import Navbar from "../components/Navbar";
import Footer from "../components/Footer";
import { toolLinks } from "@/constants";
export default function Home() {
@ -6,17 +7,20 @@ export default function Home() {
<div className="h-screen w-screen bg-black text-white font-noto flex flex-col items-center">
<Navbar renderHomeLink={false} />
<div className="w-screen h-screen flex flex-col items-center justify-center">
<div className="grid grid-cols-3 gap-4">
<div className="grid grid-cols-3 gap-6">
{toolLinks.map((tool) => (
<div
key={tool.title}
className="border-2 border-white p-3 flex justify-center rounded-2xl"
className="text-2xl border-2 border-white p-5 flex justify-center rounded-2xl shadow-md
shadow-white hover:scale-110 hover:transition-scale hover:duration-200
hover:text-blue-400 hover:border-blue-400 hover:shadow-blue-400"
>
<a href={tool.link}>{tool.title}</a>
</div>
))}
</div>
</div>
<Footer />
</div>
);
}