diff --git a/src/components/TechnologyDemosSection/TechnologyDemosSection.tsx b/src/components/TechnologyDemosSection/TechnologyDemosSection.tsx index b1fab71..8760f8b 100644 --- a/src/components/TechnologyDemosSection/TechnologyDemosSection.tsx +++ b/src/components/TechnologyDemosSection/TechnologyDemosSection.tsx @@ -12,15 +12,13 @@ const TechDemoCard: React.FC = ({ description, }) => { return ( - - -
-
- {icon} -
+ + +
+
{icon}
-

{title}

-

{description}

+

{title}

+

{description}

); @@ -29,45 +27,45 @@ const TechDemoCard: React.FC = ({ const TechnologyDemosSection: React.FC = () => { const demos: TechDemoCardProps[] = [ { - icon: , + icon: , title: "Real-time Application Generation", description: "Watch applications come to life in real-time", }, { - icon: , + icon: , title: "Database Schema Creation", description: "Automated database design and optimization", }, { - icon: , + icon: , title: "Authentication System Implementation", description: "Complete security implementation in minutes", }, { - icon: , + icon: , title: "API Development & Documentation", description: "Automatic API creation with full documentation", }, { - icon: , + icon: , title: "Deployment & Hosting Automation", description: "One-click deployment to production", }, { - icon: , + icon: , title: "User Management Systems", description: "Complete user lifecycle management", }, ]; return ( -
+
-

+

Technology Demonstrations

-

+

Experience the power of our Ivy Framework through interactive demonstrations

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">) {