diff --git a/src/app/page.tsx b/src/app/page.tsx index 93b1615..bbddd16 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Shield, ArrowRight, Zap, Target, Database, BarChart3, Lock, Users, CheckCircle } from 'lucide-react'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; @@ -29,22 +30,10 @@ export default function LandingPage() {
@@ -111,71 +74,38 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - title: "Cloud Infrastructure", - description: "Highly available and scalable cloud environments.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/blockchain-technology-cartoon-illustration_23-2151572135.jpg?_wi=1", - imageAlt: "Cloud infrastructure", + title: "Cloud Infrastructure", description: "Highly available and scalable cloud environments.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/blockchain-technology-cartoon-illustration_23-2151572135.jpg", imageAlt: "Cloud infrastructure" }, items: [ - { - text: "Auto-scaling", - }, - { - text: "Global CDN", - }, - { - text: "24/7 Monitoring", - }, + { icon: Zap, text: "Auto-scaling" }, + { icon: ArrowRight, text: "Global CDN" }, + { icon: Shield, text: "24/7 Monitoring" } ], - reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/low-poly-background-with-connecting-lines-dots_1048-6496.jpg?_wi=2", - imageAlt: "modern tech dashboard interface", + reverse: false }, { - title: "Data Analytics", - description: "Turn your data into actionable intelligence with AI.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/tablet-with-graphics-blue-tones_1134-384.jpg", - imageAlt: "Data analytics", + title: "Data Analytics", description: "Turn your data into actionable intelligence with AI.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/tablet-with-graphics-blue-tones_1134-384.jpg", imageAlt: "Data analytics" }, items: [ - { - text: "Real-time Dashboards", - }, - { - text: "Predictive Models", - }, - { - text: "Custom Reporting", - }, + { icon: BarChart3, text: "Real-time Dashboards" }, + { icon: Target, text: "Predictive Models" }, + { icon: Database, text: "Custom Reporting" } ], - reverse: true, - imageSrc: "http://img.b2bpic.net/free-photo/african-american-people-meeting-online-videoconference-with-webcam-talking-remote-videocall-conference-using-internet-teleconference-call-have-network-conversation-office_482257-49773.jpg", - imageAlt: "software developers collaboration office", + reverse: true }, { - title: "Cyber Security", - description: "Fortify your business against digital threats.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/human-face-with-music-note-design-3d-rendered-illustration_460848-11274.jpg", - imageAlt: "Security", + title: "Cyber Security", description: "Fortify your business against digital threats.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/human-face-with-music-note-design-3d-rendered-illustration_460848-11274.jpg", imageAlt: "Security" }, items: [ - { - text: "Threat Detection", - }, - { - text: "Encrypted Storage", - }, - { - text: "Identity Access", - }, + { icon: Lock, text: "Threat Detection" }, + { icon: Shield, text: "Encrypted Storage" }, + { icon: Users, text: "Identity Access" } ], - reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/blockchain-technology-cartoon-illustration_23-2151572135.jpg?_wi=2", - imageAlt: "cloud data synchronization icon", - }, + reverse: false + } ]} title="Our Expertise" description="From cloud infrastructure to bespoke enterprise software, we engineer solutions that matter." @@ -186,28 +116,13 @@ export default function LandingPage() {