From 5c9d5c4f1d3b8b1e4eddcda374099fdc354e9911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Mora?= Date: Tue, 23 Dec 2025 18:43:23 -0500 Subject: [PATCH] feat(about): add about page with company story and credentials MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Mission statement section with founder quote - Core values showcase - Company timeline/journey - Professional credentials and certifications - Team/leader profile section - Se Habla Espanol notice 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- app/about/page.tsx | 352 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 352 insertions(+) create mode 100644 app/about/page.tsx diff --git a/app/about/page.tsx b/app/about/page.tsx new file mode 100644 index 0000000..8f687c1 --- /dev/null +++ b/app/about/page.tsx @@ -0,0 +1,352 @@ +import Link from "next/link"; +import { + Award, + CheckCircle, + ArrowRight, + Calendar, + MapPin, + Target, + Heart, + Users, + GraduationCap, + BadgeCheck, +} from "lucide-react"; + +export const metadata = { + title: "About Us | AB Group LLC", + description: + "Learn about AB Group LLC, Florida's trusted QuickBooks consulting firm since 2000. Meet our team and discover our certifications.", +}; + +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) => ( +
+
+ +
+

+ {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) => ( +
+

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

+
    + {group.items.map((item) => ( +
  • + + {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) => ( + + {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. +

+
+ + Contact Us + + +
+
+
+ + ); +}