From c57274ed724d309277ffd7a3392ac0dc55cd0fec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Mora?= Date: Tue, 23 Dec 2025 18:41:21 -0500 Subject: [PATCH] feat(solutions): add solutions page with QuickBooks product offerings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - QuickBooks Enterprise section (featured) - QuickBooks Pro/Premier section - QuickBooks Point of Sale section - Integrations showcase - Comparison CTA section - Cost savings highlight banner 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- app/solutions/page.tsx | 321 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 321 insertions(+) create mode 100644 app/solutions/page.tsx diff --git a/app/solutions/page.tsx b/app/solutions/page.tsx new file mode 100644 index 0000000..ce14b5a --- /dev/null +++ b/app/solutions/page.tsx @@ -0,0 +1,321 @@ +import Link from "next/link"; +import { + Building2, + Users, + ShieldCheck, + BarChart3, + Package, + CreditCard, + Layers, + ArrowRight, + CheckCircle, + Star, + Zap, + Globe, +} from "lucide-react"; + +export const metadata = { + title: "Solutions | AB Group LLC", + description: + "QuickBooks Enterprise, Pro, Premier, and Point of Sale solutions. Find the right accounting software for your business.", +}; + +const solutions = [ + { + id: "enterprise", + featured: true, + name: "QuickBooks Enterprise", + tagline: "For Growing Businesses", + description: + "The most powerful QuickBooks product, designed for larger, growing businesses that need advanced features, greater capacity, and robust controls.", + features: [ + "Up to 30 simultaneous users", + "Advanced inventory management", + "Over 200 integrations available", + "115+ role-based permissions", + "Always-on audit trail", + "Priority Circle support", + ], + highlights: [ + { + icon: Users, + title: "Scale to 30 Users", + description: "Grow your team without switching systems", + }, + { + icon: Package, + title: "Advanced Inventory", + description: "Track hundreds of thousands of items", + }, + { + icon: ShieldCheck, + title: "Enhanced Security", + description: "Granular user permissions and audit trails", + }, + ], + }, + { + id: "pro-premier", + featured: false, + name: "QuickBooks Pro & Premier", + tagline: "For Small Businesses", + description: + "Powerful accounting solutions for small businesses. Pro handles the basics while Premier adds industry-specific features and reporting.", + features: [ + "Easy invoicing and billing", + "Expense tracking", + "Financial reporting", + "Multi-user support (up to 5)", + "Industry-specific editions (Premier)", + "Inventory tracking", + ], + highlights: [ + { + icon: Zap, + title: "Quick Setup", + description: "Get started in minutes, not days", + }, + { + icon: BarChart3, + title: "Smart Reports", + description: "120+ built-in reports for insights", + }, + { + icon: Globe, + title: "Anywhere Access", + description: "Remote access solutions available", + }, + ], + }, + { + id: "pos", + featured: false, + name: "QuickBooks Point of Sale", + tagline: "For Retail Businesses", + description: + "Complete retail management solution that replaces your cash register and integrates seamlessly with QuickBooks for automatic reconciliation.", + features: [ + "Integrated payment processing", + "Real-time inventory tracking", + "Customer management", + "Employee management", + "Multi-store support", + "Hardware bundles available", + ], + highlights: [ + { + icon: CreditCard, + title: "Accept All Payments", + description: "Cards, cash, checks, and gift cards", + }, + { + icon: Package, + title: "Inventory Control", + description: "Know what's in stock in real-time", + }, + { + icon: Layers, + title: "QuickBooks Sync", + description: "Automatic data sync, no double entry", + }, + ], + }, +]; + +const integrations = [ + "Salesforce CRM", + "Microsoft Excel", + "TrueCommerce EDI", + "E-commerce Platforms", + "Payroll Services", + "Time Tracking", + "Inventory Management", + "Custom Solutions", +]; + +export default function SolutionsPage() { + return ( + <> + {/* Hero Section */} +
+
+
+

Our Solutions

+

+ Find the Right QuickBooks{" "} + for Your Business +

+

+ From small startups to growing enterprises, we help you choose and + implement the perfect QuickBooks solution. Save thousands compared + to enterprise alternatives. +

+
+
+
+ + {/* Solutions */} + {solutions.map((solution, index) => ( +
+
+ {solution.featured && ( +
+ + + Most Popular + +
+ )} + +
+
+

+ {solution.tagline} +

+

+ {solution.name} +

+

+ {solution.description} +

+ +
    + {solution.features.map((feature) => ( +
  • + + {feature} +
  • + ))} +
+ +
+ + Get a Quote + + +
+
+ +
+ {solution.highlights.map((highlight) => ( +
+
+
+ +
+
+

+ {highlight.title} +

+

+ {highlight.description} +

+
+
+
+ ))} +
+
+
+
+ ))} + + {/* Integrations */} +
+
+
+

+ Integrations & Add-ons +

+

+ QuickBooks works with over 200 compatible business applications. + We can help you integrate the tools you need. +

+
+ +
+ {integrations.map((integration) => ( +
+

+ {integration} +

+
+ ))} +
+ +

+ And 200+ more integrations available +

+
+
+ + {/* Comparison CTA */} +
+
+
+ +

+ Not Sure Which Solution is Right for You? +

+

+ Let our experts analyze your business needs and recommend the + perfect QuickBooks solution. We'll help you choose the right + edition and configure it for your specific requirements. +

+
+ + Schedule a Free Consultation + + + + Call (305) 387-8582 + +
+
+
+
+ + {/* CTA Banner */} +
+
+
+
+

+ Save Thousands vs. Other Systems +

+

+ QuickBooks Enterprise starts at $3,000 vs. $20,000-$40,000 for + alternatives. +

+
+ + Get Your Quote + + +
+
+
+ + ); +}