Update src/app/about/page.tsx
This commit is contained in:
@@ -2,12 +2,12 @@
|
||||
|
||||
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 TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -24,33 +24,9 @@ export default function LandingPage() {
|
||||
<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",
|
||||
},
|
||||
]}
|
||||
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",
|
||||
}}
|
||||
button={{ text: "Request a Free Consultation", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -61,14 +37,7 @@ export default function LandingPage() {
|
||||
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",
|
||||
},
|
||||
{ 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."
|
||||
@@ -83,26 +52,10 @@ export default function LandingPage() {
|
||||
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.",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081913.jpg",
|
||||
imageAlt: "People having dinner in luxurious restaurants",
|
||||
},
|
||||
{ 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." }
|
||||
], imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081913.jpg", imageAlt: "People having dinner in luxurious restaurants" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -111,40 +64,8 @@ export default function LandingPage() {
|
||||
<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: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ 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>
|
||||
|
||||
Reference in New Issue
Block a user