Merge version_1 into main #1

Merged
bender merged 8 commits from version_1 into main 2026-02-12 22:40:35 +00:00
8 changed files with 114 additions and 226 deletions

View File

@@ -5,6 +5,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterCard from '@/components/sections/footer/FooterCard';
import Link from 'next/link';
import { Linkedin, Mail } from 'lucide-react';
export default function AboutPage() {
@@ -26,9 +27,10 @@ export default function AboutPage() {
brandName="A B Clemence & Co"
navItems={[
{ name: "Home", id: "/" },
{ name: "Our Approach", id: "/services" },
{ name: "Expertise", id: "team" },
{ name: "Contact", id: "/contact" }
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]}
/>
</div>
@@ -37,26 +39,17 @@ export default function AboutPage() {
<TeamCardTen
title="Meet the Strategic Leaders Behind Your Financial Success"
tag="Our Team"
tagAnimation="entrance-slide"
tagAnimation="slide-up"
membersAnimation="slide-up"
members={[
{
id: "1",
name: "Alexandra B. Clemence",
imageSrc: "https://img.b2bpic.net/free-photo/studio-portrait-successful-young-businesswoman_1262-5844.jpg",
imageAlt: "Alexandra B. Clemence, Founder & Principal Advisor"
id: "1", name: "Alexandra B. Clemence", imageSrc: "https://img.b2bpic.net/free-photo/studio-portrait-successful-young-businesswoman_1262-5844.jpg", imageAlt: "professional business consultant portrait team"
},
{
id: "2",
name: "Richard J. Sterling",
imageSrc: "https://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg",
imageAlt: "Richard J. Sterling, Senior Tax Strategist"
id: "2", name: "Richard J. Sterling", imageSrc: "https://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", imageAlt: "professional business consultant portrait team"
},
{
id: "3",
name: "Catherine M. Hayes",
imageSrc: "https://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg",
imageAlt: "Catherine M. Hayes, Wealth Planning Director"
id: "3", name: "Catherine M. Hayes", imageSrc: "https://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg", imageAlt: "professional business consultant portrait team"
}
]}
memberVariant="default"
@@ -64,30 +57,22 @@ export default function AboutPage() {
/>
</div>
<div id="about-faq" data-section="about-faq">
<div id="faq" data-section="faq">
<FaqDouble
title="About Our Financial Advisory Approach"
description="Learn more about our methodology, expertise, and commitment to delivering strategic financial leadership."
faqs={[
{
id: "1",
title: "What qualifications does your team hold?",
content: "Our team combines decades of experience with advanced certifications including CPA, CFP, and specialized financial planning credentials. We maintain continuing education and stay current with evolving tax law and financial strategies."
id: "1", title: "What qualifications does your team hold?", content: "Our team combines decades of experience with advanced certifications including CPA, CFP, and specialized financial planning credentials. We maintain continuing education and stay current with evolving tax law and financial strategies."
},
{
id: "2",
title: "How do you maintain client confidentiality?",
content: "We adhere to the strictest confidentiality standards and professional ethics. All client information is protected through secure systems, confidentiality agreements, and professional privilege standards that exceed industry requirements."
id: "2", title: "How do you maintain client confidentiality?", content: "We adhere to the strictest confidentiality standards and professional ethics. All client information is protected through secure systems, confidentiality agreements, and professional privilege standards that exceed industry requirements."
},
{
id: "3",
title: "What industries do you specialize in serving?",
content: "We work with business owners and professionals across multiple industries including technology, healthcare, professional services, manufacturing, and real estate. Our strategies adapt to the unique challenges of each sector."
id: "3", title: "What industries do you specialize in serving?", content: "We work with business owners and professionals across multiple industries including technology, healthcare, professional services, manufacturing, and real estate. Our strategies adapt to the unique challenges of each sector."
},
{
id: "4",
title: "How do you stay current with changing tax laws?",
content: "Our team participates in ongoing professional development, maintains memberships in key professional organizations, and regularly attends tax and financial planning conferences to ensure we're current with all regulatory changes."
id: "4", title: "How do you stay current with changing tax laws?", content: "Our team participates in ongoing professional development, maintains memberships in key professional organizations, and regularly attends tax and financial planning conferences to ensure we're current with all regulatory changes."
}
]}
faqsAnimation="entrance-slide"
@@ -104,13 +89,11 @@ export default function AboutPage() {
socialLinks={[
{
icon: Linkedin,
href: "https://linkedin.com/company/abclemence",
ariaLabel: "LinkedIn"
href: "https://linkedin.com/company/abclemence", ariaLabel: "LinkedIn"
},
{
icon: Mail,
href: "mailto:hello@abclemence.com",
ariaLabel: "Email"
href: "mailto:hello@abclemence.com", ariaLabel: "Email"
}
]}
/>

View File

@@ -6,6 +6,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { useBlogPosts } from "@/hooks/useBlogPosts";
import Link from 'next/link';
import { Linkedin, Mail } from 'lucide-react';
export default function BlogPage() {
@@ -30,11 +31,10 @@ export default function BlogPage() {
brandName="A B Clemence & Co"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Our Approach", id: "approach" },
{ name: "Expertise", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Shop", id: "/shop" }
]}
/>
</div>

View File

@@ -3,7 +3,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterCard from '@/components/sections/footer/FooterCard';
import Link from 'next/link';
import { ArrowRight, Linkedin, Mail } from 'lucide-react';
export default function ContactPage() {
@@ -27,7 +29,8 @@ export default function ContactPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Expertise", id: "contact" }
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]}
/>
</div>
@@ -37,25 +40,18 @@ export default function ContactPage() {
ctaTitle="Ready to Take Control of Your Financial Strategy?"
ctaDescription="Schedule a private consultation with one of our strategic advisors to explore how we can deliver clarity, confidence, and elevated financial execution for your business and personal wealth."
ctaButton={{
text: "Schedule a Private Consultation",
href: "https://calendly.com/abclemence/consultation"
text: "Schedule a Private Consultation", href: "https://calendly.com/abclemence/consultation"
}}
ctaIcon={ArrowRight}
faqs={[
{
id: "1",
title: "How much does an initial consultation cost?",
content: "Our initial discovery consultation is complimentary. This gives us the opportunity to understand your situation and discuss whether our services are the right fit for your needs."
id: "1", title: "How much does an initial consultation cost?", content: "Our initial discovery consultation is complimentary. This gives us the opportunity to understand your situation and discuss whether our services are the right fit for your needs."
},
{
id: "2",
title: "What should I prepare for our first meeting?",
content: "Bring recent tax returns, business financial statements, existing financial plans, and a summary of your primary financial goals and concerns. We'll guide you through what's most helpful."
id: "2", title: "What should I prepare for our first meeting?", content: "Bring recent tax returns, business financial statements, existing financial plans, and a summary of your primary financial goals and concerns. We'll guide you through what's most helpful."
},
{
id: "3",
title: "Do you work with clients remotely?",
content: "Yes. While we appreciate in-person meetings when possible, we serve clients nationwide and conduct most ongoing advisory work via secure video conferencing and digital collaboration tools."
id: "3", title: "Do you work with clients remotely?", content: "Yes. While we appreciate in-person meetings when possible, we serve clients nationwide and conduct most ongoing advisory work via secure video conferencing and digital collaboration tools."
}
]}
useInvertedBackground={true}
@@ -64,20 +60,16 @@ export default function ContactPage() {
/>
</div>
<div id="contact-faq" data-section="contact-faq">
<div id="faq" data-section="faq">
<FaqDouble
title="Getting Started Questions"
description="Additional information about beginning your financial advisory partnership with A B Clemence & Co."
faqs={[
{
id: "1",
title: "What is your typical client engagement timeline?",
content: "Initial engagements typically take 2-3 months from discovery to full strategy implementation. We begin with a comprehensive assessment, develop customized strategies, and then coordinate implementation with your existing professional team."
id: "1", title: "What is your typical client engagement timeline?", content: "Initial engagements typically take 2-3 months from discovery to full strategy implementation. We begin with a comprehensive assessment, develop customized strategies, and then coordinate implementation with your existing professional team."
},
{
id: "2",
title: "How do you coordinate with existing advisors?",
content: "We work collaboratively with your current accountants, attorneys, and other professionals. Our role is to provide strategic coordination and ensure all elements of your financial plan work together effectively."
id: "2", title: "How do you coordinate with existing advisors?", content: "We work collaboratively with your current accountants, attorneys, and other professionals. Our role is to provide strategic coordination and ensure all elements of your financial plan work together effectively."
}
]}
faqsAnimation="entrance-slide"
@@ -94,13 +86,11 @@ export default function ContactPage() {
socialLinks={[
{
icon: Linkedin,
href: "https://linkedin.com/company/abclemence",
ariaLabel: "LinkedIn"
href: "https://linkedin.com/company/abclemence", ariaLabel: "LinkedIn"
},
{
icon: Mail,
href: "mailto:hello@abclemence.com",
ariaLabel: "Email"
href: "mailto:hello@abclemence.com", ariaLabel: "Email"
}
]}
/>

View File

@@ -5,37 +5,25 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const barlow = Barlow({
variable: "--font-barlow",
subsets: ["latin"],
variable: "--font-barlow", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Financial Advisory & Tax Strategy | A B Clemence & Co",
description: "Strategic financial leadership and tax planning for high-net-worth business owners and professionals. Clarity, confidence, and long-term partnership.",
keywords: ["financial advisory", "tax strategy", "wealth planning", "business owners", "high-net-worth", "financial planning"],
title: "Financial Advisory & Tax Strategy | A B Clemence & Co", description: "Strategic financial leadership and tax planning for high-net-worth business owners and professionals. Clarity, confidence, and long-term partnership.", keywords: ["financial advisory", "tax strategy", "wealth planning", "business owners", "high-net-worth", "financial planning"],
metadataBase: new URL("https://www.abclemence.com"),
alternates: {
canonical: "https://www.abclemence.com"
},
openGraph: {
title: "Strategic Financial Leadership for Those Who Expect More",
description: "Tax strategy, financial planning, and long-term partnership. A B Clemence & Co delivers clarity, confidence, and elevated financial execution.",
url: "https://www.abclemence.com",
siteName: "A B Clemence & Co",
type: "website",
images: [
title: "Strategic Financial Leadership for Those Who Expect More", description: "Tax strategy, financial planning, and long-term partnership. A B Clemence & Co delivers clarity, confidence, and elevated financial execution.", url: "https://www.abclemence.com", siteName: "A B Clemence & Co", type: "website", images: [
{
url: "https://img.b2bpic.net/free-photo/customers-writing-signature-contract-entering-partnership-with-agent_482257-101263.jpg",
alt: "A B Clemence & Co - Strategic Financial Advisory"
url: "https://img.b2bpic.net/free-photo/customers-writing-signature-contract-entering-partnership-with-agent_482257-101263.jpg", alt: "A B Clemence & Co - Strategic Financial Advisory"
}
]
},
twitter: {
card: "summary_large_image",
title: "Strategic Financial Leadership | A B Clemence & Co",
description: "Discover comprehensive financial advisory and tax strategy services designed for discerning business owners.",
images: ["https://img.b2bpic.net/free-photo/customers-writing-signature-contract-entering-partnership-with-agent_482257-101263.jpg"]
card: "summary_large_image", title: "Strategic Financial Leadership | A B Clemence & Co", description: "Discover comprehensive financial advisory and tax strategy services designed for discerning business owners.", images: ["https://img.b2bpic.net/free-photo/customers-writing-signature-contract-entering-partnership-with-agent_482257-101263.jpg"]
},
robots: {
index: true,

View File

@@ -8,7 +8,8 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { CheckCircle, Sparkles, ArrowRight, Linkedin, Mail } from 'lucide-react';
import Link from 'next/link';
import { CheckCircle, Sparkles } from 'lucide-react';
export default function HomePage() {
return (
@@ -28,11 +29,11 @@ export default function HomePage() {
<NavbarStyleApple
brandName="A B Clemence & Co"
navItems={[
{ name: "About", id: "about" },
{ name: "Our Approach", id: "approach" },
{ name: "Expertise", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]}
/>
</div>
@@ -45,10 +46,10 @@ export default function HomePage() {
tag="Financial Advisory"
tagIcon={Sparkles}
buttons={[
{ text: "Schedule a Private Consultation", href: "contact" }
{ text: "Schedule a Private Consultation", href: "/contact" }
]}
imageSrc="https://img.b2bpic.net/free-photo/customers-writing-signature-contract-entering-partnership-with-agent_482257-101263.jpg"
imageAlt="Financial advisory professional workspace"
imageAlt="financial advisor wealth planning office"
imagePosition="right"
mediaAnimation="opacity"
/>
@@ -60,23 +61,17 @@ export default function HomePage() {
description="We deliver more than compliance. We offer strategic clarity and long-term partnership designed for ambitious business owners who demand excellence."
tabs={[
{
id: "partnership",
label: "Long-Term Partnership",
description: "We build enduring relationships based on trust, discretion, and aligned interests. Your success is our success, and we're committed to supporting your financial goals across decades, not just transactions."
id: "partnership", label: "Long-Term Partnership", description: "We build enduring relationships based on trust, discretion, and aligned interests. Your success is our success, and we're committed to supporting your financial goals across decades, not just transactions."
},
{
id: "strategy",
label: "Strategic Clarity",
description: "Beyond tax compliance, we provide a comprehensive financial roadmap that addresses your unique business pressures, succession planning, wealth optimization, and personal financial security with proactive strategy."
id: "strategy", label: "Strategic Clarity", description: "Beyond tax compliance, we provide a comprehensive financial roadmap that addresses your unique business pressures, succession planning, wealth optimization, and personal financial security with proactive strategy."
},
{
id: "expertise",
label: "Specialized Expertise",
description: "Our team brings deep experience in high-net-worth financial planning, business exit strategies, tax optimization, and wealth preservation for discerning professionals and entrepreneurs."
id: "expertise", label: "Specialized Expertise", description: "Our team brings deep experience in high-net-worth financial planning, business exit strategies, tax optimization, and wealth preservation for discerning professionals and entrepreneurs."
}
]}
imageSrc="https://img.b2bpic.net/free-photo/financial-advisor-inviting-clients-sign-formal-agreement-documents_482257-91761.jpg"
imageAlt="A B Clemence & Co leadership team"
imageAlt="financial leadership partnership business strategy"
imagePosition="right"
mediaAnimation="blur-reveal"
useInvertedBackground={false}
@@ -91,10 +86,7 @@ export default function HomePage() {
tagIcon={CheckCircle}
features={[
{
id: "1",
title: "Discovery & Assessment",
description: "We conduct a comprehensive review of your financial situation, business structure, tax exposure, and long-term goals to develop a complete understanding of your needs.",
media: { imageSrc: "/placeholders/placeholder1.webp" },
id: "1", title: "Discovery & Assessment", description: "We conduct a comprehensive review of your financial situation, business structure, tax exposure, and long-term goals to develop a complete understanding of your needs.", media: { imageSrc: "/placeholders/placeholder1.webp" },
items: [
{ icon: CheckCircle, text: "Detailed financial review" },
{ icon: CheckCircle, text: "Goal alignment session" },
@@ -103,10 +95,7 @@ export default function HomePage() {
reverse: false
},
{
id: "2",
title: "Strategic Planning",
description: "We develop customized tax and financial strategies that align with your business objectives, minimize tax exposure, and create a roadmap for wealth growth and protection.",
media: { imageSrc: "/placeholders/placeholder1.webp" },
id: "2", title: "Strategic Planning", description: "We develop customized tax and financial strategies that align with your business objectives, minimize tax exposure, and create a roadmap for wealth growth and protection.", media: { imageSrc: "/placeholders/placeholder1.webp" },
items: [
{ icon: CheckCircle, text: "Tax optimization strategies" },
{ icon: CheckCircle, text: "Wealth structuring" },
@@ -115,10 +104,7 @@ export default function HomePage() {
reverse: true
},
{
id: "3",
title: "Implementation & Execution",
description: "Our team coordinates implementation of approved strategies, working seamlessly with your accountants, attorneys, and other advisors to ensure precise execution and compliance.",
media: { imageSrc: "/placeholders/placeholder1.webp" },
id: "3", title: "Implementation & Execution", description: "Our team coordinates implementation of approved strategies, working seamlessly with your accountants, attorneys, and other advisors to ensure precise execution and compliance.", media: { imageSrc: "/placeholders/placeholder1.webp" },
items: [
{ icon: CheckCircle, text: "Coordinated execution" },
{ icon: CheckCircle, text: "Professional collaboration" },
@@ -127,10 +113,7 @@ export default function HomePage() {
reverse: false
},
{
id: "4",
title: "Ongoing Optimization",
description: "We provide continuous monitoring and annual strategy reviews, adapting to changes in tax law, business circumstances, and personal goals to ensure your strategies remain effective.",
media: { imageSrc: "/placeholders/placeholder1.webp" },
id: "4", title: "Ongoing Optimization", description: "We provide continuous monitoring and annual strategy reviews, adapting to changes in tax law, business circumstances, and personal goals to ensure your strategies remain effective.", media: { imageSrc: "/placeholders/placeholder1.webp" },
items: [
{ icon: CheckCircle, text: "Annual strategy review" },
{ icon: CheckCircle, text: "Tax law monitoring" },
@@ -151,33 +134,18 @@ export default function HomePage() {
description="Delivering measurable value and strategic leadership to high-net-worth clients."
metrics={[
{
id: "1",
value: "20+",
title: "Years of Financial Advisory Excellence",
items: [
"Multiple industries served",
"Complex strategy implementations",
"Sustained client relationships"
id: "1", value: "20+", title: "Years of Financial Advisory Excellence", items: [
"Multiple industries served", "Complex strategy implementations", "Sustained client relationships"
]
},
{
id: "2",
value: "$500M+",
title: "Assets Under Advisory Guidance",
items: [
"High-net-worth clients",
"Business owners and professionals",
"Continued growth and optimization"
id: "2", value: "$500M+", title: "Assets Under Advisory Guidance", items: [
"High-net-worth clients", "Business owners and professionals", "Continued growth and optimization"
]
},
{
id: "3",
value: "95%",
title: "Long-Term Client Retention",
items: [
"Trust-based relationships",
"Consistent strategy delivery",
"Measurable financial results"
id: "3", value: "95%", title: "Long-Term Client Retention", items: [
"Trust-based relationships", "Consistent strategy delivery", "Measurable financial results"
]
}
]}
@@ -191,26 +159,17 @@ export default function HomePage() {
<TeamCardTen
title="Meet the Strategic Leaders Behind Your Financial Success"
tag="Our Team"
tagAnimation="entrance-slide"
tagAnimation="slide-up"
membersAnimation="slide-up"
members={[
{
id: "1",
name: "Alexandra B. Clemence",
imageSrc: "https://img.b2bpic.net/free-photo/studio-portrait-successful-young-businesswoman_1262-5844.jpg",
imageAlt: "Alexandra B. Clemence, Founder & Principal Advisor"
id: "1", name: "Alexandra B. Clemence", imageSrc: "https://img.b2bpic.net/free-photo/studio-portrait-successful-young-businesswoman_1262-5844.jpg", imageAlt: "professional business consultant portrait team"
},
{
id: "2",
name: "Richard J. Sterling",
imageSrc: "https://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg",
imageAlt: "Richard J. Sterling, Senior Tax Strategist"
id: "2", name: "Richard J. Sterling", imageSrc: "https://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", imageAlt: "professional business consultant portrait team"
},
{
id: "3",
name: "Catherine M. Hayes",
imageSrc: "https://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg",
imageAlt: "Catherine M. Hayes, Wealth Planning Director"
id: "3", name: "Catherine M. Hayes", imageSrc: "https://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg", imageAlt: "professional business consultant portrait team"
}
]}
memberVariant="default"
@@ -224,40 +183,20 @@ export default function HomePage() {
description="Real testimonials from business owners and professionals who have partnered with us for strategic financial leadership."
testimonials={[
{
id: "1",
name: "David Chen",
role: "CEO & Founder",
company: "TechVenture Solutions",
rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/insurance-broker-highlighting-important-contract-terms_482257-115640.jpg",
imageAlt: "David Chen, CEO & Founder"
id: "1", name: "David Chen", role: "CEO & Founder", company: "TechVenture Solutions", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/insurance-broker-highlighting-important-contract-terms_482257-115640.jpg", imageAlt: "executive business professional portrait headshot"
},
{
id: "2",
name: "Margaret Sullivan",
role: "Managing Partner",
company: "Sullivan & Associates LLP",
rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/two-busy-workers-modern-office_329181-15330.jpg",
imageAlt: "Margaret Sullivan, Managing Partner"
id: "2", name: "Margaret Sullivan", role: "Managing Partner", company: "Sullivan & Associates LLP", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/two-busy-workers-modern-office_329181-15330.jpg", imageAlt: "entrepreneur business professional portrait headshot"
},
{
id: "3",
name: "James Richardson",
role: "Owner & President",
company: "Richardson Manufacturing Group",
rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/happy-man-his-wife-using-digital-tablet-while-being-meeting-with-bank-manager-office_637285-1737.jpg",
imageAlt: "James Richardson, Owner & President"
id: "3", name: "James Richardson", role: "Owner & President", company: "Richardson Manufacturing Group", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/happy-man-his-wife-using-digital-tablet-while-being-meeting-with-bank-manager-office_637285-1737.jpg", imageAlt: "business owner professional portrait headshot"
},
{
id: "4",
name: "Victoria Patel",
role: "Founder & CEO",
company: "Patel Ventures",
rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/senior-entrepreneur-discussing-with-coworker-holding-documents-conference-briefing-businessman-discussing-ideas-with-colleagues-about-financial-strategy-new-start-up-company_482257-5074.jpg",
imageAlt: "Victoria Patel, Founder & CEO"
id: "4", name: "Victoria Patel", role: "Founder & CEO", company: "Patel Ventures", rating: 5,
imageSrc: "https://img.b2bpic.net/free-photo/senior-entrepreneur-discussing-with-coworker-holding-documents-conference-briefing-businessman-discussing-ideas-with-colleagues-about-financial-strategy-new-start-up-company_482257-5074.jpg", imageAlt: "executive business professional portrait headshot"
}
]}
gridVariant="uniform-all-items-equal"

View File

@@ -5,6 +5,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import FooterCard from '@/components/sections/footer/FooterCard';
import Link from 'next/link';
import { CheckCircle, Linkedin, Mail } from 'lucide-react';
export default function ServicesPage() {
@@ -27,8 +28,9 @@ export default function ServicesPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Expertise", id: "approach" },
{ name: "Contact", id: "/contact" }
{ name: "Contact", id: "/contact" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]}
/>
</div>
@@ -41,10 +43,7 @@ export default function ServicesPage() {
tagIcon={CheckCircle}
features={[
{
id: "1",
title: "Discovery & Assessment",
description: "We conduct a comprehensive review of your financial situation, business structure, tax exposure, and long-term goals to develop a complete understanding of your needs.",
media: { imageSrc: "/placeholders/placeholder1.webp" },
id: "1", title: "Discovery & Assessment", description: "We conduct a comprehensive review of your financial situation, business structure, tax exposure, and long-term goals to develop a complete understanding of your needs.", media: { imageSrc: "/placeholders/placeholder1.webp" },
items: [
{ icon: CheckCircle, text: "Detailed financial review" },
{ icon: CheckCircle, text: "Goal alignment session" },
@@ -53,10 +52,7 @@ export default function ServicesPage() {
reverse: false
},
{
id: "2",
title: "Strategic Planning",
description: "We develop customized tax and financial strategies that align with your business objectives, minimize tax exposure, and create a roadmap for wealth growth and protection.",
media: { imageSrc: "/placeholders/placeholder1.webp" },
id: "2", title: "Strategic Planning", description: "We develop customized tax and financial strategies that align with your business objectives, minimize tax exposure, and create a roadmap for wealth growth and protection.", media: { imageSrc: "/placeholders/placeholder1.webp" },
items: [
{ icon: CheckCircle, text: "Tax optimization strategies" },
{ icon: CheckCircle, text: "Wealth structuring" },
@@ -65,10 +61,7 @@ export default function ServicesPage() {
reverse: true
},
{
id: "3",
title: "Implementation & Execution",
description: "Our team coordinates implementation of approved strategies, working seamlessly with your accountants, attorneys, and other advisors to ensure precise execution and compliance.",
media: { imageSrc: "/placeholders/placeholder1.webp" },
id: "3", title: "Implementation & Execution", description: "Our team coordinates implementation of approved strategies, working seamlessly with your accountants, attorneys, and other advisors to ensure precise execution and compliance.", media: { imageSrc: "/placeholders/placeholder1.webp" },
items: [
{ icon: CheckCircle, text: "Coordinated execution" },
{ icon: CheckCircle, text: "Professional collaboration" },
@@ -89,23 +82,13 @@ export default function ServicesPage() {
description="Delivering measurable value and strategic leadership to high-net-worth clients."
metrics={[
{
id: "1",
value: "20+",
title: "Years of Financial Advisory Excellence",
items: [
"Multiple industries served",
"Complex strategy implementations",
"Sustained client relationships"
id: "1", value: "20+", title: "Years of Financial Advisory Excellence", items: [
"Multiple industries served", "Complex strategy implementations", "Sustained client relationships"
]
},
{
id: "2",
value: "$500M+",
title: "Assets Under Advisory Guidance",
items: [
"High-net-worth clients",
"Business owners and professionals",
"Continued growth and optimization"
id: "2", value: "$500M+", title: "Assets Under Advisory Guidance", items: [
"High-net-worth clients", "Business owners and professionals", "Continued growth and optimization"
]
}
]}
@@ -122,13 +105,11 @@ export default function ServicesPage() {
socialLinks={[
{
icon: Linkedin,
href: "https://linkedin.com/company/abclemence",
ariaLabel: "LinkedIn"
href: "https://linkedin.com/company/abclemence", ariaLabel: "LinkedIn"
},
{
icon: Mail,
href: "mailto:hello@abclemence.com",
ariaLabel: "Email"
href: "mailto:hello@abclemence.com", ariaLabel: "Email"
}
]}
/>

View File

@@ -12,6 +12,7 @@ import ProductCart from "@/components/ecommerce/cart/ProductCart";
import { useProductDetail } from "@/hooks/useProductDetail";
import { useCart } from "@/hooks/useCart";
import { useCheckout } from "@/hooks/useCheckout";
import Link from 'next/link';
interface ProductPageProps {
params: Promise<{ id: string }>;
@@ -82,15 +83,16 @@ export default function ProductPage({ params }: ProductPageProps) {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="A B Clemence & Co"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "contact" }
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Blog", id: "/blog" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -126,15 +128,16 @@ export default function ProductPage({ params }: ProductPageProps) {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="A B Clemence & Co"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "contact" }
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Blog", id: "/blog" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -177,15 +180,16 @@ export default function ProductPage({ params }: ProductPageProps) {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="A B Clemence & Co"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "contact" }
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Blog", id: "/blog" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<div id="productDetailCard" data-section="productDetailCard">

View File

@@ -8,6 +8,7 @@ import { Linkedin, Mail } from 'lucide-react';
import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog";
import { useProductCatalog } from "@/hooks/useProductCatalog";
import { useState } from "react";
import Link from 'next/link';
export default function ShopPage() {
const [cartOpen, setCartOpen] = useState(false);
@@ -34,15 +35,16 @@ export default function ShopPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="A B Clemence & Co"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "contact" }
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Blog", id: "/blog" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
@@ -77,15 +79,16 @@ export default function ShopPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="A B Clemence & Co"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "contact" }
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Blog", id: "/blog" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<div id="productCatalog" data-section="productCatalog">