Update src/app/about/page.tsx

This commit is contained in:
2026-04-11 15:43:53 +00:00
parent 71a62a240e
commit 48174e716f

View File

@@ -13,112 +13,62 @@ export default function LandingPage() {
defaultButtonVariant="bounce-effect"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Patients",
id: "/patients",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Noe Valley Smiles"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Patients", id: "/patients" },
{ name: "Contact", id: "/contact" },
]}
brandName="Noe Valley Smiles"
/>
</div>
<div id="about-body" data-section="about-body">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{
type: "text",
content: "Our Mission",
},
{
type: "image",
src: "http://img.b2bpic.net/free-photo/big-billboard-template-building-city_23-2148197258.jpg",
alt: "Clinic Exterior",
},
]}
/>
</div>
<div id="about-body" data-section="about-body">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{ type: "text", content: "Our Mission" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/big-billboard-template-building-city_23-2148197258.jpg", alt: "Clinic Exterior" }
]}
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Our Leadership"
description="The faces behind our practice."
members={[
{
id: "a1",
name: "Dr. Jane Smith",
role: "Director",
description: "Committed to clinical excellence.",
imageSrc: "http://img.b2bpic.net/free-photo/doctor-hospital-interior_1398-731.jpg",
},
]}
/>
</div>
<div id="team" data-section="team">
<TeamCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Our Leadership"
description="The faces behind our practice."
members={[
{ id: "a1", name: "Dr. Jane Smith", role: "Director", description: "Committed to clinical excellence.", imageSrc: "http://img.b2bpic.net/free-photo/doctor-hospital-interior_1398-731.jpg" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
],
},
{
items: [
{
label: "Services",
href: "/services",
},
{
label: "Patients",
href: "/patients",
},
],
},
{
items: [
{
label: "Contact",
href: "/contact",
},
],
},
]}
logoText="Noe Valley Smiles"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
{ items: [{ label: "Services", href: "/services" }, { label: "Patients", href: "/patients" }] },
{ items: [{ label: "Contact", href: "/contact" }] }
]}
logoText="Noe Valley Smiles"
/>
</div>
</ReactLenis>
</ThemeProvider>
);