style changes

This commit is contained in:
Cypro Freelance 2024-08-26 17:28:31 +05:30
parent f3d46b7c37
commit be070d9213

View file

@ -9,7 +9,7 @@ interface CardProps {
const Card: FC<CardProps> = ({ title, url }) => { const Card: FC<CardProps> = ({ title, url }) => {
return ( return (
<div className=" bg-zinc-900 border rounded-lg hover:bg-zinc-800 transition-all"> <div className="bg-accent border rounded-lg hover:bg-muted transition-all">
<Link href={url} className="group"> <Link href={url} className="group">
<div className="flex-center rounded-lg p-6"> <div className="flex-center rounded-lg p-6">
<h2 className="text-2xl font-bold mb-2">{title}</h2> <h2 className="text-2xl font-bold mb-2">{title}</h2>