feat: start page tool overview with dynamic rendering

This commit is contained in:
theoleuthardt 2025-02-08 13:35:33 +01:00
parent 41286d4691
commit f7b0538ac7
3 changed files with 46 additions and 2 deletions

View file

@ -1,9 +1,22 @@
import Navbar from "../components/Navbar";
import { toolLinks } from "@/constants";
export default function Home() {
return (
<div className="bg-black text-white font-noto">
<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">
{toolLinks.map((tool) => (
<div
key={tool.title}
className="border-2 border-white p-3 flex justify-center rounded-2xl"
>
<a href={tool.link}>{tool.title}</a>
</div>
))}
</div>
</div>
</div>
);
}