diff --git a/app/services/page.tsx b/app/services/page.tsx new file mode 100644 index 0000000..dd95f04 --- /dev/null +++ b/app/services/page.tsx @@ -0,0 +1,334 @@ +import Link from "next/link"; +import { + Settings, + GraduationCap, + HeadphonesIcon, + CreditCard, + Users, + FileSpreadsheet, + MapPin, + Phone as PhoneIcon, + Monitor, + ArrowRight, + CheckCircle, + Building2, + ShoppingCart, + Briefcase, + Hammer, + Truck, + UtensilsCrossed, +} from "lucide-react"; + +export const metadata = { + title: "Services | AB Group LLC", + description: + "Expert QuickBooks consulting, setup, training, and support services. On-site, remote, and telephone support available.", +}; + +const services = [ + { + icon: Settings, + title: "QuickBooks Setup & Installation", + description: + "Complete installation and configuration of QuickBooks Pro, Premier, Enterprise, and Point of Sale. We tailor the setup to your specific business needs and industry requirements.", + features: [ + "Chart of accounts setup", + "User permissions configuration", + "Data migration assistance", + "Custom report creation", + ], + }, + { + icon: GraduationCap, + title: "Training Programs", + description: + "Comprehensive training sessions designed to help you and your team maximize your QuickBooks investment. From basics to advanced features.", + features: [ + "One-on-one training", + "Group workshops", + "Role-specific training", + "Ongoing refresher courses", + ], + }, + { + icon: HeadphonesIcon, + title: "Consulting & Advisory", + description: + "Expert business consulting to streamline your accounting and financial processes. We analyze your needs and recommend the best solutions.", + features: [ + "Needs analysis", + "Software selection", + "Process optimization", + "Best practices implementation", + ], + }, + { + icon: FileSpreadsheet, + title: "Payroll Services", + description: + "QuickBooks Payroll setup and support to help you manage employee compensation efficiently and stay compliant with tax requirements.", + features: [ + "Payroll setup", + "Tax table updates", + "Direct deposit setup", + "Year-end reporting", + ], + }, + { + icon: CreditCard, + title: "Merchant Services", + description: + "Accept credit cards and process payments seamlessly integrated with your QuickBooks system for streamlined reconciliation.", + features: [ + "Payment processing setup", + "QuickBooks integration", + "Competitive rates", + "Secure transactions", + ], + }, + { + icon: Users, + title: "Ongoing Support", + description: + "Monthly support contracts to ensure your QuickBooks system runs smoothly. Get help when you need it with priority access to our experts.", + features: [ + "Priority phone support", + "Remote troubleshooting", + "Software updates", + "Performance optimization", + ], + }, +]; + +const supportTypes = [ + { + icon: MapPin, + title: "On-Site Support", + description: + "We come to your location for hands-on training, setup, and troubleshooting. Perfect for complex implementations and team training sessions.", + }, + { + icon: PhoneIcon, + title: "Phone Support", + description: + "Quick answers to your questions with our telephone support. Ideal for urgent issues and quick consultations.", + }, + { + icon: Monitor, + title: "Remote Access", + description: + "Secure remote access support for immediate assistance. We can connect to your system and resolve issues in real-time.", + }, +]; + +const industries = [ + { icon: Building2, name: "Professional Services" }, + { icon: ShoppingCart, name: "Retail" }, + { icon: Briefcase, name: "Consulting" }, + { icon: Hammer, name: "Construction" }, + { icon: Truck, name: "Distribution" }, + { icon: UtensilsCrossed, name: "Hospitality" }, +]; + +export default function ServicesPage() { + return ( + <> + {/* Hero Section */} +
+
+
+

Our Services

+

+ Expert Solutions for Your{" "} + Business +

+

+ As Intuit Solution Providers, we offer a comprehensive range of + services to help your business succeed. From initial setup to + ongoing support, we're here for you every step of the way. +

+
+
+
+ + {/* Services Grid */} +
+
+
+

+ What We Offer +

+

+ Comprehensive QuickBooks and accounting software services tailored + to your needs. +

+
+ +
+ {services.map((service) => ( +
+
+ +
+

+ {service.title} +

+

+ {service.description} +

+
    + {service.features.map((feature) => ( +
  • + + {feature} +
  • + ))} +
+
+ ))} +
+
+
+ + {/* Support Types */} +
+
+
+

+ Support Your Way +

+

+ Choose the support method that works best for your business. +

+
+ +
+ {supportTypes.map((type) => ( +
+
+ +
+

+ {type.title} +

+

{type.description}

+
+ ))} +
+
+
+ + {/* Industries */} +
+
+
+

+ Industries We Serve +

+

+ Our experience spans across multiple industries, allowing us to + provide specialized solutions for your specific needs. +

+
+ +
+ {industries.map((industry) => ( +
+ +

+ {industry.name} +

+
+ ))} +
+ +

+ And many more industries supported +

+
+
+ + {/* Process Section */} +
+
+
+

How We Work

+

+ Our proven process ensures successful implementation and ongoing + success. +

+
+ +
+ {[ + { + step: "01", + title: "Discovery", + description: + "We analyze your business needs and current processes to understand your requirements.", + }, + { + step: "02", + title: "Solution Design", + description: + "We recommend the right software and configuration for your specific situation.", + }, + { + step: "03", + title: "Implementation", + description: + "We set up your system, migrate data, and configure everything to your specifications.", + }, + { + step: "04", + title: "Training & Support", + description: + "We train your team and provide ongoing support to ensure long-term success.", + }, + ].map((item) => ( +
+
+ {item.step} +
+

{item.title}

+

{item.description}

+
+ ))} +
+
+
+ + {/* CTA Section */} +
+
+
+
+

+ Ready to Get Started? +

+

+ Contact us today for a free consultation and needs analysis. +

+
+ + Get a Free Quote + + +
+
+
+ + ); +}