diff --git a/components/services.tsx b/components/services.tsx new file mode 100644 index 0000000..905d3d7 --- /dev/null +++ b/components/services.tsx @@ -0,0 +1,98 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { motion } from "framer-motion"; +import { Palette, Code, Smartphone, TrendingUp, Sparkles, Zap } from "lucide-react"; + +const services = [ + { + icon: Palette, + title: "Brand Identity", + description: "Crafting memorable brands that resonate with your audience and stand out in the market", + color: "from-pink-500 to-rose-500", + }, + { + icon: Code, + title: "Web Development", + description: "Building lightning-fast, scalable websites with cutting-edge technologies and best practices", + color: "from-violet-500 to-purple-500", + }, + { + icon: Smartphone, + title: "Mobile Apps", + description: "Creating intuitive mobile experiences that users love on iOS and Android platforms", + color: "from-blue-500 to-cyan-500", + }, + { + icon: Sparkles, + title: "UI/UX Design", + description: "Designing beautiful, user-centric interfaces that drive engagement and conversions", + color: "from-orange-500 to-amber-500", + }, + { + icon: TrendingUp, + title: "Digital Marketing", + description: "Strategic campaigns that amplify your brand and drive measurable business growth", + color: "from-green-500 to-emerald-500", + }, + { + icon: Zap, + title: "Consulting", + description: "Expert guidance to transform your digital strategy and accelerate innovation", + color: "from-indigo-500 to-blue-500", + }, +]; + +export function Services() { + return ( +
+ + + Our Services +

+ Full-spectrum digital solutions tailored to elevate your brand and achieve your goals +

+
+ +
+ {services.map((service, index) => { + const Icon = service.icon; + return ( + + {/* Gradient background on hover */} +
+ +
+
+ +
+ +

+ {service.title} +

+ +

+ {service.description} +

+
+ + ); + })} +
+ +
+ ); +}