From 2d347eb0782ee694b928d3312f5b1cc38775f013 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:46:03 +0000 Subject: [PATCH] Add src/app/services/page.tsx --- src/app/services/page.tsx | 142 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 142 insertions(+) create mode 100644 src/app/services/page.tsx diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..3d1885e --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,142 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import Link from "next/link"; +import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import { HardDrive, Cloud, Users, ShieldCheck } from 'lucide-react'; + +interface FooterProps { + brandName?: string; + navItems: Array<{ name: string; href: string; }>; +} + +const Footer: React.FC = ({ brandName = "Nexsoft Australia", navItems }) => { + return ( +
+
+
+ {brandName} +
+ +
+ © {new Date().getFullYear()} {brandName}. All rights reserved. +
+
+
+ ); +}; + +export default function ServicesPage() { + const navItems = [ + {name: "Home", id: "home", href: "/"}, + {name: "About us", id: "about", href: "/about"}, + {name: "Services", id: "services", href: "/services"}, + {name: "Products", id: "products", href: "/products"}, + {name: "Achievements", id: "achievements", href: "/portfolio"}, + {name: "News", id: "news", href: "/portfolio"}, + {name: "Contact us", id: "contact", href: "/contact"} + ]; + + const navbarProps = { + brandName: "Nexsoft Australia", navItems: navItems, + button: {text: "Get a Quote", href: "/contact"} + }; + + return ( + + +
+ +
+
+ +
+
+ +
+