From 145fe0d024a3e1b2b27ad5773ff00ab24af566ac Mon Sep 17 00:00:00 2001 From: Artem Date: Sun, 19 Oct 2025 18:21:39 +0300 Subject: [PATCH 1/3] feat: remove card borders and update background colors --- .../FrameworkDetailsSection/FrameworkDetailsSection.tsx | 4 ++-- src/components/ui/card.tsx | 2 +- src/index.css | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx b/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx index 56ec61e..763b81e 100644 --- a/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx +++ b/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx @@ -67,10 +67,10 @@ const FrameworkDetailsSection: React.FC = () => {
-

+

Framework & Technology Details

-

+

Deep dive into the technology that powers our rapid development

diff --git a/src/components/ui/card.tsx b/src/components/ui/card.tsx index 113d66c..3adac87 100644 --- a/src/components/ui/card.tsx +++ b/src/components/ui/card.tsx @@ -7,7 +7,7 @@ function Card({ className, ...props }: React.ComponentProps<"div">) {
Date: Sun, 19 Oct 2025 18:24:10 +0300 Subject: [PATCH 2/3] feat: replace check icon with CircleCheckBig in featured projects --- .../FrameworkDetailsSection/FrameworkDetailsSection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx b/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx index 763b81e..f7eaacc 100644 --- a/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx +++ b/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx @@ -1,6 +1,6 @@ import React from "react"; import { Card, CardContent, CardHeader, CardTitle } from "../ui/card"; -import { Check } from "lucide-react"; +import { CircleCheckBig } from "lucide-react"; import { FrameworkDetailsSectionProps, CapabilityListProps, @@ -20,7 +20,7 @@ const CapabilityList: React.FC = ({ {capabilities.map((capability, index) => (
- + {capability}
))} From a9fcb8569491fac2f97e97504d51f3c991e68f37 Mon Sep 17 00:00:00 2001 From: Artem Date: Sun, 19 Oct 2025 18:31:36 +0300 Subject: [PATCH 3/3] feat: improve better styling and colors --- .../FrameworkDetailsSection.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx b/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx index f7eaacc..14594a9 100644 --- a/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx +++ b/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx @@ -11,17 +11,15 @@ const CapabilityList: React.FC = ({ capabilities, }) => { return ( - + - - {title} - + {title} {capabilities.map((capability, index) => ( -
+
- {capability} + {capability}
))}