diff --git a/src/app/page.tsx b/src/app/page.tsx index 3873e41..badd64f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import { Code, Globe, Laptop, Smartphone, ThumbsUp, Wrench } from "lucide-react"; +import { Code, Globe, Laptop, Smartphone, ThumbsUp, Wrench, ShieldCheck, Zap, Cpu, Monitor, Wifi, Database, Server, SmartphoneCharging } from "lucide-react"; export default function LandingPage() { return ( @@ -87,18 +87,21 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} features={[ - { - icon: Smartphone, - title: "Mobile Repairs", description: "Screen replacement, battery swaps, and water damage recovery."}, - { - icon: Laptop, - title: "Laptop Maintenance", description: "System upgrades, screen repairs, and hardware diagnostics."}, - { - icon: Globe, - title: "Web Development", description: "Custom websites and web apps built for growth and performance."}, + { icon: Smartphone, title: "Mobile Display Repair", description: "High-quality screen replacements for all modern smartphones." }, + { icon: Laptop, title: "OS Optimization", description: "Deep-cleaning your laptop software for peak performance." }, + { icon: Globe, title: "Full-stack Web Dev", description: "Building complete digital ecosystems for your business." }, + { icon: ShieldCheck, title: "Security Patching", description: "Keeping your software environments safe and updated." }, + { icon: Zap, title: "Battery Replacement", description: "Prolong your device life with genuine battery swaps." }, + { icon: Cpu, title: "Hardware Upgrades", description: "RAM and Storage expansions for faster processing power." }, + { icon: Monitor, title: "Desktop Servicing", description: "Complete maintenance for desktop systems and towers." }, + { icon: Wifi, title: "Connectivity Repair", description: "Solving networking and signal hardware issues." }, + { icon: Database, title: "Data Backup & Recovery", description: "Safeguarding your critical information assets." }, + { icon: Server, title: "Server Maintenance", description: "Infrastructure support for small business servers." }, + { icon: SmartphoneCharging, title: "Charging Port Repair", description: "Restoring power connectivity for mobile devices." }, + { icon: Wrench, title: "Precision Soldering", description: "Expert micro-soldering for intricate board issues." } ]} - title="Our Specialized Services" - description="High-quality solutions tailored for your individual and professional tech needs." + title="Our Expanded Services" + description="Our service list now covers over 100 specialized technical solutions for hardware and software needs." /> diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..d709a9c --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,101 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Smartphone, Laptop, Globe } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file