From be070d9213e0534773d48b4559fcf195873bb3e8 Mon Sep 17 00:00:00 2001 From: Cypro Freelance <110410268+Proxyy587@users.noreply.github.com> Date: Mon, 26 Aug 2024 17:28:31 +0530 Subject: [PATCH] style changes --- app/(auth)/_components/Card.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/app/(auth)/_components/Card.tsx b/app/(auth)/_components/Card.tsx index b603c42..584104f 100644 --- a/app/(auth)/_components/Card.tsx +++ b/app/(auth)/_components/Card.tsx @@ -3,21 +3,21 @@ import Link from "next/link"; import { FC } from "react"; interface CardProps { - title: string; - url: string; + title: string; + url: string; } const Card: FC = ({ title, url }) => { - return ( -
- -
-

{title}

- -
- -
- ); + return ( +
+ +
+

{title}

+ +
+ +
+ ); }; export default Card;