Update src/app/services/page.tsx

This commit is contained in:
2026-04-06 18:44:53 +00:00
parent 756b3e9f51
commit 62b89f7d2c

View File

@@ -3,7 +3,8 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
import { Cpu, Wifi, Server } from "lucide-react";
export default function ServicesPage() {
return (
@@ -32,17 +33,16 @@ export default function ServicesPage() {
/>
</div>
<div id="services-list" data-section="services-list">
<FeatureCardNine
<FeatureHoverPattern
title="Professional IT Services"
description="Comprehensive solutions tailored for your business success."
textboxLayout="default"
animationType="slide-up"
showStepNumbers={true}
useInvertedBackground={false}
features={[
{ title: "PC Installation", description: "Expert hardware configuration and software setup" },
{ title: "Wi-Fi Network Setup", description: "Robust and secure local area network deployment" },
{ title: "Server Installation", description: "Enterprise grade server architecture and maintenance" }
{ icon: Cpu, title: "PC Installation", description: "Expert hardware configuration and software setup" },
{ icon: Wifi, title: "Wi-Fi Network Setup", description: "Robust and secure local area network deployment" },
{ icon: Server, title: "Server Installation", description: "Enterprise grade server architecture and maintenance" }
]}
/>
</div>