Files
4da80061-08cc-47ef-af5f-e72…/src/app/services/page.tsx

223 lines
8.3 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import {
ShoppingCart,
Wrench,
Zap,
Package,
Shield,
Phone,
} from "lucide-react";
export default function ServicesPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "Why Us", id: "why-us" },
{ name: "Industries", id: "industries" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "Contact", href: "#contact" },
],
},
{
items: [
{ label: "Copier Sales", href: "/services" },
{ label: "Copier Leasing", href: "/services" },
{ label: "Printer Repair", href: "/services" },
{ label: "Managed Print", href: "/services" },
],
},
{
items: [
{ label: "Call Us", href: "tel:+1234567890" },
{ label: "Email", href: "mailto:info@gatewaybizsolutions.com" },
{ label: "Get a Quote", href: "#contact" },
],
},
{
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Accessibility", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="mediumLargeSizeMediumTitles"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Gateway Business Solutions"
navItems={navItems}
button={{
text: "Get a Quote",
href: "#contact",
}}
/>
</div>
<div id="services-detail" data-section="services-detail">
<FeatureBorderGlow
title="Complete Service Solutions"
description="Gateway Business Solutions offers a comprehensive range of copier and office equipment services to meet every business need. From sales and leasing to repair and managed print, we deliver professional solutions backed by local expertise."
tag="Service Overview"
tagAnimation="slide-up"
features={[
{
icon: ShoppingCart,
title: "Copier Sales",
description: "Browse our selection of new and certified pre-owned copiers. We work with leading manufacturers to bring you the latest technology at competitive prices.",
},
{
icon: Zap,
title: "Flexible Leasing",
description: "Upgrade equipment without large capital expenditures. Our leasing options are customized to your business needs and budget.",
},
{
icon: Wrench,
title: "Expert Repair Service",
description: "Fast, reliable repair service from certified technicians. We minimize downtime so your business keeps running smoothly.",
},
{
icon: Package,
title: "Managed Print Services",
description: "Reduce printing costs and simplify operations. Our MPS program monitors usage and optimizes your equipment fleet.",
},
{
icon: Shield,
title: "Maintenance Plans",
description: "Proactive maintenance to prevent breakdowns. Choose from standard or premium plans tailored to your equipment needs.",
},
{
icon: Phone,
title: "24/7 Support",
description: "Professional support when you need it. Our experienced team is ready to help with technical questions or service requests.",
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{
text: "Request a Consultation",
href: "#contact",
},
]}
buttonAnimation="slide-up"
/>
</div>
<div id="equipment-showcase" data-section="equipment-showcase">
<ProductCardOne
title="Equipment & Solutions"
description="We partner with industry leaders to provide cutting-edge office equipment. Our selection includes copiers, multifunction printers, production devices, and document management solutions."
tag="Available Equipment"
tagAnimation="slide-up"
products={[
{
id: "multifunction",
name: "Multifunction Copiers",
price: "Sales & Leasing",
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-furniture-shop-store-interior_1203-8586.jpg",
imageAlt: "Professional multifunction copiers available",
},
{
id: "production",
name: "Production Printers",
price: "High-Volume Solutions",
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-printer-work-high-angle_23-2149713652.jpg?_wi=1",
imageAlt: "High-performance production printers",
},
{
id: "workflow",
name: "Document Workflow",
price: "Business Automation",
imageSrc: "http://img.b2bpic.net/free-photo/grey-haired-male-plant-engineer-hardhat-glasses-standing-industrial-machine-using-digital-device_74855-16385.jpg",
imageAlt: "Advanced document workflow solutions",
},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
buttons={[
{
text: "View Full Catalog",
href: "/",
},
]}
buttonAnimation="slide-up"
/>
</div>
<div id="service-faq" data-section="service-faq">
<ContactFaq
ctaTitle="Have Service Questions?"
ctaDescription="Our team is here to help. Call us or submit a request for more information about any of our services."
ctaButton={{
text: "Contact Our Team",
href: "#",
}}
ctaIcon={Phone}
animationType="slide-up"
useInvertedBackground={false}
faqs={[
{
id: "service-faq-1",
title: "What is included in a copier lease?",
content: "Our copier leases typically include equipment, standard maintenance, toner/supplies, and technical support. Specific terms vary by agreement.",
},
{
id: "service-faq-2",
title: "How long do repairs usually take?",
content: "Most repairs are completed within 24 hours for local calls. For complex issues, we provide a timeline and keep you informed throughout the process.",
},
{
id: "service-faq-3",
title: "Can you help reduce our printing costs?",
content: "Yes! Our managed print services analyze your usage and recommend optimizations that typically reduce costs by 20-40%.",
},
{
id: "service-faq-4",
title: "Do you service equipment from other vendors?",
content: "We specialize in major manufacturers but can discuss options for other equipment. Contact us with your specific needs.",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Gateway Business Solutions"
columns={footerColumns}
ariaLabel="Site footer"
/>
</div>
</ThemeProvider>
);
}