diff --git a/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx b/src/components/FrameworkDetailsSection/FrameworkDetailsSection.tsx index 56ec61e..14594a9 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, @@ -11,17 +11,15 @@ const CapabilityList: React.FC = ({ capabilities, }) => { return ( - + - - {title} - + {title} {capabilities.map((capability, index) => ( -
- - {capability} +
+ + {capability}
))} @@ -67,10 +65,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">) {