Update src/app/patients/page.tsx

This commit is contained in:
2026-04-11 15:43:55 +00:00
parent 67e4b20fe8
commit 3c6b5b093b

View File

@@ -13,111 +13,63 @@ 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="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
title="Resources FAQ"
description="Useful tips for your dental health."
faqsAnimation="opacity"
faqs={[
{
id: "p1",
title: "What insurance do you take?",
content: "We work with most major PPO insurance providers.",
},
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
title="Resources FAQ"
description="Useful tips for your dental health."
faqsAnimation="opacity"
faqs={[
{ id: "p1", title: "What insurance do you take?", content: "We work with most major PPO insurance providers." }
]}
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardTen
textboxLayout="default"
useInvertedBackground={false}
title="Resources Testimonials"
description="Patient experiences using our resources."
testimonials={[
{
id: "t1",
title: "Great tools",
quote: "The resources online were so helpful.",
name: "Kelsey P.",
role: "Patient",
imageSrc: "http://img.b2bpic.net/free-photo/black-woman-with-braids-working-pain-recovery-clinic-winking-looking-camera-with-sexy-expression-cheerful-happy-face_839833-9533.jpg",
},
]}
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardTen
textboxLayout="default"
useInvertedBackground={false}
title="Resources Testimonials"
description="Patient experiences using our resources."
testimonials={[
{ id: "t1", title: "Great tools", quote: "The resources online were so helpful.", name: "Kelsey P.", role: "Patient", imageSrc: "http://img.b2bpic.net/free-photo/black-woman-with-braids-working-pain-recovery-clinic-winking-looking-camera-with-sexy-expression-cheerful-happy-face_839833-9533.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>
);