Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #6.
This commit is contained in:
@@ -2,72 +2,44 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
|
||||
import TeamCardEleven from "@/components/sections/team/TeamCardEleven";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="LCP Business Partners"
|
||||
button={{ text: "Request a Free Consultation", href: "/contact" }}
|
||||
/>
|
||||
<NavbarLayoutFloatingInline navItems={navItems} brandName="LCP Business Partners" button={{ text: "Request a Free Consultation", href: "/contact" }} />
|
||||
</div>
|
||||
|
||||
<div id="about-team" data-section="about-team">
|
||||
<TeamCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{ id: "c1", name: "Colin Li", role: "Principal Accountant", description: "CPA, Chartered Accountant, and registered BAS agent with a passion for helping small business owners succeed through proactive strategy.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-sad-expression_1194-3905.jpg", imageAlt: "blond businessman sad expression" }
|
||||
]}
|
||||
title="Meet Our Founder"
|
||||
description="Colin Li, Founder and Principal Accountant."
|
||||
/>
|
||||
<TeamCardTwo animationType="slide-up" textboxLayout="split" gridVariant="three-columns-all-equal-width" useInvertedBackground={false} title="Meet Our Founder" description="Colin Li, Founder and Principal Accountant." members={[{ id: "c1", name: "Colin Li", role: "Principal Accountant", description: "CPA, Chartered Accountant, and registered BAS agent with a passion for helping small business owners succeed through proactive strategy.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-sad-expression_1194-3905.jpg", imageAlt: "blond businessman sad expression" }]} />
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Philosophy"
|
||||
description="Commitment to excellence and integrity in every interaction."
|
||||
groups={[
|
||||
{ id: "g1", groupTitle: "Core Values", members: [
|
||||
{ id: "m1", title: "Honesty", subtitle: "Transparency first", detail: "We value open communication with all clients." },
|
||||
{ id: "m2", title: "Precision", subtitle: "Attention to detail", detail: "Every transaction is balanced accurately." }
|
||||
] }
|
||||
]}
|
||||
/>
|
||||
<TeamCardEleven animationType="slide-up" textboxLayout="default" useInvertedBackground={false} title="Our Philosophy" description="Commitment to excellence and integrity in every interaction." groups={[{ id: "g1", groupTitle: "Core Values", members: [{ id: "m1", title: "Honesty", subtitle: "Transparency first", detail: "We value open communication with all clients." }, { id: "m2", title: "Precision", subtitle: "Attention to detail", detail: "Every transaction is balanced accurately." }] }]} />
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="LCP Business Partners"
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About Us", href: "/about" }] },
|
||||
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Client Portal", href: "#" }, { label: "Privacy Policy", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
<FooterBaseReveal logoText="LCP Business Partners" columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About Us", href: "/about" }] }, { title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Client Portal", href: "#" }, { label: "Privacy Policy", href: "#" }] }]} />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -2,144 +2,41 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
|
||||
export default function LandingPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="LCP Business Partners"
|
||||
button={{
|
||||
text: "Request a Free Consultation",
|
||||
href: "/contact",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Book a Free Consultation"
|
||||
description="Ready to take control of your accounting? Fill in the form and we'll reach out shortly."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "business",
|
||||
type: "text",
|
||||
placeholder: "Business Name",
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Tell us about your needs",
|
||||
rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-saleswoman-business-woman-office-sitting-chair-with-documents-reading-papers_1258-194548.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Get in touch"
|
||||
title="We'd love to chat"
|
||||
description="Prefer a direct call or email? Drop us a line and let's get started."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="LCP Business Partners"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Client Portal",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline navItems={navItems} brandName="LCP Business Partners" button={{ text: "Request a Free Consultation", href: "/contact" }} />
|
||||
</div>
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactSplitForm title="Book a Free Consultation" description="Ready to take control of your accounting? Fill in the form and we'll reach out shortly." inputs={[{ name: "name", type: "text", placeholder: "Your Name", required: true }, { name: "email", type: "email", placeholder: "Email Address", required: true }, { name: "business", type: "text", placeholder: "Business Name" }]} textarea={{ name: "message", placeholder: "Tell us about your needs", rows: 4 }} imageSrc="http://img.b2bpic.net/free-photo/portrait-saleswoman-business-woman-office-sitting-chair-with-documents-reading-papers_1258-194548.jpg" />
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal logoText="LCP Business Partners" columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About Us", href: "/about" }] }, { title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Client Portal", href: "#" }, { label: "Privacy Policy", href: "#" }] }]} />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
146
src/app/page.tsx
146
src/app/page.tsx
@@ -2,113 +2,53 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
||||
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
|
||||
export default function LandingPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
];
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="LCP Business Partners"
|
||||
button={{
|
||||
text: "Request a Free Consultation", href: "/contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="Accounting That Puts Your Business First"
|
||||
description="Reliable compliance, tax strategies that save you money, and proactive advice tailored to your goals."
|
||||
buttons={[{ text: "Request a Free Consultation", href: "/contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-business-people-work_23-2147923424.jpg"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/ideal-beginning-sunday_1098-15647.jpg", alt: "Client A" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-saleswoman-business-woman-office-sitting-chair-with-documents-reading-papers_1258-194548.jpg", alt: "Client B" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/government-agents-discuss-confidential-data-stored-ssd_482257-118751.jpg", alt: "Client C" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/arab-business-worker-chatting-with-coworker-using-smartphone_482257-78117.jpg", alt: "Client D" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg", alt: "Client E" },
|
||||
]}
|
||||
avatarText="Trusted by 500+ local SMEs"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", value: "5.0", title: "Google Rating", items: ["Based on 9 verified reviews"] },
|
||||
{ id: "m2", value: "8+", title: "Years Experience", items: ["Serving local businesses"] },
|
||||
{ id: "m3", value: "CPA", title: "Certified", items: ["Fully qualified team"] },
|
||||
]}
|
||||
title="Proven Expertise"
|
||||
description="Our firm delivers consistent results for SMEs."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardEight
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ title: "Tax & Compliance", description: "Expert navigation of BAS, payroll, and income tax regulations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cl8zjf" },
|
||||
{ title: "Cloud Bookkeeping", description: "Seamless Xero/MYOB integration with real-time reporting dashboards.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=wulk30" },
|
||||
{ title: "Business Advisory", description: "Proactive growth strategies, cashflow forecasting, and KPI tracking.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0xwp2b" },
|
||||
]}
|
||||
title="Our Core Services"
|
||||
description="Comprehensive accounting solutions designed to scale your business."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah J.", date: "2023", title: "SME Owner", quote: "LCP transformed my tax planning process. Truly proactive.", tag: "Recommended", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-with-blue-jacket_23-2149020770.jpg" },
|
||||
{ id: "t2", name: "Mike C.", date: "2023", title: "Retailer", quote: "Exceptional bookkeeping and guidance for my retail store.", tag: "Expert", avatarSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg" },
|
||||
{ id: "t3", name: "Emily R.", date: "2024", title: "Consultant", quote: "Clear, reliable, and always ready to help my business grow.", tag: "Growth", avatarSrc: "http://img.b2bpic.net/free-photo/happy-young-handsome-man-sitting-cafe-table_1262-975.jpg" },
|
||||
{ id: "t4", name: "David K.", date: "2024", title: "Contractor", quote: "The team made BAS simple. Could not recommend enough.", tag: "Reliable", avatarSrc: "http://img.b2bpic.net/free-photo/healthy-breakfast-concept-with-modern-woman_23-2148115601.jpg" },
|
||||
{ id: "t5", name: "Jessica L.", date: "2024", title: "Owner", quote: "Professional advice that actually saved me money this year.", tag: "Valued", avatarSrc: "http://img.b2bpic.net/free-photo/smile-woman-talking-phone-looking-camera_23-2148317284.jpg" },
|
||||
]}
|
||||
title="Client Success Stories"
|
||||
description="See why local businesses trust LCP with their future."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="LCP Business Partners"
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About Us", href: "/about" }] },
|
||||
{ title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Client Portal", href: "#" }, { label: "Privacy Policy", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline navItems={navItems} brandName="LCP Business Partners" button={{ text: "Request a Free Consultation", href: "/contact" }} />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay title="Accounting That Puts Your Business First" description="Reliable compliance, tax strategies that save you money, and proactive advice tailored to your goals." buttons={[{ text: "Request a Free Consultation", href: "/contact" }]} imageSrc="http://img.b2bpic.net/free-photo/group-business-people-work_23-2147923424.jpg" avatars={[{ src: "http://img.b2bpic.net/free-photo/ideal-beginning-sunday_1098-15647.jpg", alt: "Client A" }, { src: "http://img.b2bpic.net/free-photo/portrait-saleswoman-business-woman-office-sitting-chair-with-documents-reading-papers_1258-194548.jpg", alt: "Client B" }, { src: "http://img.b2bpic.net/free-photo/government-agents-discuss-confidential-data-stored-ssd_482257-118751.jpg", alt: "Client C" }, { src: "http://img.b2bpic.net/free-photo/arab-business-worker-chatting-with-coworker-using-smartphone_482257-78117.jpg", alt: "Client D" }, { src: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg", alt: "Client E" }]} avatarText="Trusted by 500+ local SMEs" />
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven animationType="slide-up" textboxLayout="default" useInvertedBackground={false} metrics={[{ id: "m1", value: "5.0", title: "Google Rating", items: ["Based on 9 verified reviews"] }, { id: "m2", value: "8+", title: "Years Experience", items: ["Serving local businesses"] }, { id: "m3", value: "CPA", title: "Certified", items: ["Fully qualified team"] }]} title="Proven Expertise" description="Our firm delivers consistent results for SMEs." />
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardEight textboxLayout="split" useInvertedBackground={true} features={[{ title: "Tax & Compliance", description: "Expert navigation of BAS, payroll, and income tax regulations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cl8zjf" }, { title: "Cloud Bookkeeping", description: "Seamless Xero/MYOB integration with real-time reporting dashboards.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=wulk30" }, { title: "Business Advisory", description: "Proactive growth strategies, cashflow forecasting, and KPI tracking.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=0xwp2b" }]} title="Our Core Services" description="Comprehensive accounting solutions designed to scale your business." />
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive textboxLayout="default" useInvertedBackground={false} testimonials={[{ id: "t1", name: "Sarah J.", date: "2023", title: "SME Owner", quote: "LCP transformed my tax planning process. Truly proactive.", tag: "Recommended", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-with-blue-jacket_23-2149020770.jpg" }, { id: "t2", name: "Mike C.", date: "2023", title: "Retailer", quote: "Exceptional bookkeeping and guidance for my retail store.", tag: "Expert", avatarSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg" }, { id: "t3", name: "Emily R.", date: "2024", title: "Consultant", quote: "Clear, reliable, and always ready to help my business grow.", tag: "Growth", avatarSrc: "http://img.b2bpic.net/free-photo/happy-young-handsome-man-sitting-cafe-table_1262-975.jpg" }, { id: "t4", name: "David K.", date: "2024", title: "Contractor", quote: "The team made BAS simple. Could not recommend enough.", tag: "Reliable", avatarSrc: "http://img.b2bpic.net/free-photo/healthy-breakfast-concept-with-modern-woman_23-2148115601.jpg" }, { id: "t5", name: "Jessica L.", date: "2024", title: "Owner", quote: "Professional advice that actually saved me money this year.", tag: "Valued", avatarSrc: "http://img.b2bpic.net/free-photo/smile-woman-talking-phone-looking-camera_23-2148317284.jpg" }]} title="Client Success Stories" description="See why local businesses trust LCP with their future." />
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal logoText="LCP Business Partners" columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About Us", href: "/about" }] }, { title: "Support", items: [{ label: "Contact", href: "/contact" }, { label: "Client Portal", href: "#" }, { label: "Privacy Policy", href: "#" }] }]} />
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user