"use client"; import { Award, CheckCircle, ArrowRight, Calendar, MapPin, Target, Heart, Users, GraduationCap, BadgeCheck, } from "lucide-react"; import AnimatedBackground from "../components/AnimatedBackground"; import Button from "../components/Button"; const timeline = [ { year: "2000", title: "Company Founded", description: "AB Group LLC was established in Florida to serve small and mid-sized businesses with accounting software solutions.", }, { year: "2008", title: "Intuit Solution Provider", description: "Selected as an official Intuit Solution Provider, joining an elite group of certified QuickBooks consultants.", }, { year: "2010+", title: "Expanded Services", description: "Grew our service offerings to include remote access solutions, payroll services, and merchant services integration.", }, { year: "Today", title: "20+ Years of Excellence", description: "Continuing to serve businesses across Florida and beyond with expert QuickBooks consulting and support.", }, ]; const credentials = [ { category: "Professional Degrees", items: ["Master of Science in Finance", "Master of Science in Accounting"], }, { category: "Intuit Certifications", items: [ "Intuit Solution Provider", "QuickBooks Advanced ProAdvisor", "QuickBooks Enterprise Certified", "Point of Sale Certified", "QuickBooks Certified ProAdvisor", ], }, { category: "Other Certifications", items: ["Sage/Peachtree Certified Consultant"], }, ]; const values = [ { icon: Target, title: "Excellence", description: "We strive for the highest standards in everything we do, from software implementation to customer support.", }, { icon: Heart, title: "Customer Focus", description: "Your satisfaction is our primary concern. We're committed to providing prompt, professional, and courteous service.", }, { icon: Users, title: "Partnership", description: "We see ourselves as an extension of your team, working together to help your business succeed.", }, ]; export default function AboutPage() { return ( <> {/* Hero Section */}

About Us

Your Trusted{" "} QuickBooks {" "} Partner Since 2000

We are a Florida-based consulting group dedicated to supporting small and mid-sized businesses with expert accounting and business solutions.

{/* Mission Section */}

Our Mission

Our mission is to provide all of our customers with prompt, professional, and courteous service. Our primary concern is your satisfaction with the array of services we provide.

We are in the business of keeping you in business. As business consultants, our primary task is to give you an array of tools that will help you grow your business.

Florida, USA
Est. 2000
“There is a right way to do business. To succeed you'll need a solid idea, a great team, and ultimately the right execution.”
NA

Nicolle Alcazar, MSF

President, AB Group LLC

{/* Values Section */}

What Drives Us

Our core values guide everything we do.

{values.map((value, index) => (

{value.title}

{value.description}

))}
{/* Timeline Section */}

Our Journey

Over two decades of helping businesses succeed.

{timeline.map((item, index) => (
{item.year}
{index < timeline.length - 1 && (
)}

{item.title}

{item.description}

))}
{/* Credentials Section */}

Professional Credentials

Our team holds the highest degrees of training, experience, and certifications in the industry.

{credentials.map((group, groupIndex) => (

{group.category === "Professional Degrees" && ( )} {group.category === "Intuit Certifications" && ( )} {group.category === "Other Certifications" && ( )} {group.category}

    {group.items.map((item, idx) => (
  • {item}
  • ))}
))}
{/* Team Section */}

Meet Our Leader

NA

Nicolle Alcazar, MSF

President & Lead Consultant

With a Master of Science in Finance and extensive certifications as an Intuit Solution Provider and Advanced ProAdvisor, Nicolle brings over 20 years of experience helping businesses optimize their accounting and financial systems.

{[ "MSF", "ISP", "Advanced ProAdvisor", "Enterprise Certified", ].map((badge, index) => ( {badge} ))}
{/* Se Habla Espanol */}

Se Habla Espanol

We proudly serve our Spanish-speaking clients in their preferred language.

{/* CTA Section */}

Ready to Work With Experts?

Let's discuss how we can help your business succeed.

); }