Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-09 12:31:11 +00:00

View File

@@ -8,7 +8,7 @@ import TeamCardTen from '@/components/sections/team/TeamCardTen';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { Heart } from "lucide-react";
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -23,91 +23,62 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<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="Pro Plumbing Service"
button={{
text: "Call Now",
href: "tel:8318017175",
}}
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Pro Plumbing Service"
button={{
text: "Call Now", href: "tel:8318017175"}}
/>
</div>
<div id="about-body" data-section="about-body">
<TeamCardTen
useInvertedBackground={false}
title="Meet Our Expert Team"
tag="Qualified Pros"
members={[
{
id: "m1",
name: "Jose R.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg?_wi=4",
},
{
id: "m2",
name: "Carlos T.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg?_wi=5",
},
{
id: "m3",
name: "Mike B.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg?_wi=6",
},
{
id: "m4",
name: "Sarah W.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg?_wi=7",
},
]}
memberVariant="card"
/>
</div>
<div id="about-body" data-section="about-body">
<TeamCardTen
useInvertedBackground={false}
title="Meet Our Expert Team"
tag="Qualified Pros"
membersAnimation="slide-up"
members={[
{
id: "m1", name: "Jose R.", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg"},
{
id: "m2", name: "Carlos T.", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg"},
{
id: "m3", name: "Mike B.", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg"},
{
id: "m4", name: "Sarah W.", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg"},
]}
memberVariant="card"
/>
</div>
<div id="about" data-section="about">
<TestimonialAboutCard
useInvertedBackground={false}
tag="Our Commitment"
title="Why We Do It"
description="We believe that plumbing is the heartbeat of every home. Jose and his team treat your house like their own, ensuring that every faucet runs smooth and every drain flows free."
subdescription="Dedicated to the Hollister community."
icon={Heart}
imageSrc="http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg?_wi=8"
mediaAnimation="slide-up"
/>
</div>
<div id="about" data-section="about">
<TestimonialAboutCard
useInvertedBackground={false}
tag="Our Commitment"
title="Why We Do It"
description="We believe that plumbing is the heartbeat of every home. Jose and his team treat your house like their own, ensuring that every faucet runs smooth and every drain flows free."
subdescription="Dedicated to the Hollister community."
icon={Heart}
imageSrc="http://img.b2bpic.net/free-photo/happy-couple-standing-embraced-auto-repairs-shop-while-car-mechanic-is-background_637285-7788.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Pro Plumbing Service"
leftLink={{
text: "Terms of Service",
href: "#",
}}
rightLink={{
text: "Privacy Policy",
href: "#",
}}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Pro Plumbing Service"
leftLink={{
text: "Terms of Service", href: "#"}}
rightLink={{
text: "Privacy Policy", href: "#"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);