in src/components/Authors/AuthorPage.tsx [67:86]
export default function AuthorsPage() {
return (
<div className="min-h-screen" style={{ backgroundColor: "#0c0c0c" }}>
<Navbar />
<main className="container mx-auto px-4 py-8 pt-20">
<h1 className="text-3xl font-bold text-center mb-8 text-gray-800 dark:text-white">
The Geeks.
</h1>
<div className="grid grid-cols-1 md:grid-cols-2 gap-8">
{authors.map((author, index) => (
<div key={index} className="flex justify-center">
<AuthorCard {...author} />
</div>
))}
</div>
</main>
<Footer />
</div>
);
}