From 77474325aece0ab1ab802bcc82a5621184b5b471 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 16:27:20 +0000 Subject: [PATCH] Update components/work.tsx --- components/work.tsx | 105 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 components/work.tsx diff --git a/components/work.tsx b/components/work.tsx new file mode 100644 index 0000000..197e9ef --- /dev/null +++ b/components/work.tsx @@ -0,0 +1,105 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { motion } from "framer-motion"; +import { ExternalLink } from "lucide-react"; + +const projects = [ + { + title: "FinTech Revolution", + category: "Web Design & Development", + description: "A cutting-edge financial platform that redefined digital banking", + image: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80", + color: "from-blue-500 to-cyan-500", + }, + { + title: "Luxe Fashion", + category: "E-commerce & Branding", + description: "Premium fashion brand with immersive shopping experience", + image: "https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=800&q=80", + color: "from-pink-500 to-rose-500", + }, + { + title: "TechFlow AI", + category: "SaaS Platform", + description: "AI-powered workflow automation for modern teams", + image: "https://images.unsplash.com/photo-1677442136019-21780ecad995?w=800&q=80", + color: "from-violet-500 to-purple-500", + }, + { + title: "GreenEarth", + category: "Brand Identity & Web", + description: "Sustainable living platform connecting eco-conscious consumers", + image: "https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=800&q=80", + color: "from-green-500 to-emerald-500", + }, + { + title: "StreamVibe", + category: "Mobile App Design", + description: "Next-gen music streaming app with social features", + image: "https://images.unsplash.com/photo-1611339555312-e607c8352fd7?w=800&q=80", + color: "from-orange-500 to-red-500", + }, + { + title: "HealthHub Pro", + category: "Healthcare Platform", + description: "Comprehensive telemedicine solution for modern healthcare", + image: "https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=800&q=80", + color: "from-teal-500 to-cyan-500", + }, +]; + +export function Work() { + return ( +
+ + + Featured Work +

+ Explore our portfolio of award-winning projects that push boundaries and deliver results +

+
+ +
+ {projects.map((project, index) => ( + +
+ {project.title} +
+ +
+
+
+ {project.category} +
+

{project.title}

+

{project.description}

+
+ View Case Study +
+
+
+
+ ))} +
+
+
+ ); +}