Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 775eb87a12 |
287
src/app/page.tsx
287
src/app/page.tsx
@@ -30,132 +30,28 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#services",
|
||||
},
|
||||
{
|
||||
name: "Team",
|
||||
id: "#team",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Team", id: "#team" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="South Austin Oral Surgery"
|
||||
button={{
|
||||
text: "Book Appointment",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Book Appointment", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="South Austin's Trusted Oral Surgery Specialists"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="South Austin Oral Surgery"
|
||||
description="Expert surgical care for your smile. From wisdom teeth to dental implants, our team provides safe, compassionate, and precise treatment in the heart of South Austin."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Jane D.",
|
||||
handle: "@patient",
|
||||
testimonial: "Excellent care during my wisdom tooth extraction. The team made me feel completely comfortable throughout.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-doctor-wearing-medical-gown-wearing-stethoscope-bite-tongue-green-wall_141793-26995.jpg",
|
||||
},
|
||||
{
|
||||
name: "Robert S.",
|
||||
handle: "@patient",
|
||||
testimonial: "Professional, clean, and fast. The best oral surgery experience I have ever had.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-female-doctor-happily-looking-camera-smiling-white-background_574295-2641.jpg",
|
||||
},
|
||||
{
|
||||
name: "Linda M.",
|
||||
handle: "@patient",
|
||||
testimonial: "Incredibly kind staff and very thorough explanation of the procedure. Highly recommended.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-elder-smiley-covid-recovery-center-female-doctor_23-2148847816.jpg",
|
||||
},
|
||||
{
|
||||
name: "Thomas K.",
|
||||
handle: "@patient",
|
||||
testimonial: "Quick, efficient, and painless. Everything I wanted for my oral surgery.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-young-man-walking-european-city-street_158595-4691.jpg",
|
||||
},
|
||||
{
|
||||
name: "Elena R.",
|
||||
handle: "@patient",
|
||||
testimonial: "The office is modern and the team is top-notch. Truly great experience.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-short-hair_23-2148262830.jpg",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Schedule Consultation",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
testimonials={[]}
|
||||
buttons={[{ text: "Schedule Consultation", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/dentistry-team-explaining-radiography-sick-patient-doing-oral-care-examination-cure-toothache-stomatologist-assistant-consulting-x-ray-results-dental-drill-procedure_482257-32294.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-senior-woman-looking-camera-while-standing-corridor-hospital-team-doctors-is-background_637285-729.jpg",
|
||||
alt: "Patient portrait",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiley-nurse-with-stethoscope_23-2148740054.jpg",
|
||||
alt: "Patient portrait",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-smiley-doctor-wearing-white-coat_23-2149844582.jpg",
|
||||
alt: "Patient portrait",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/doctor-preparing-consult_23-2149309927.jpg",
|
||||
alt: "Patient portrait",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-dentist-clinic_107420-74053.jpg",
|
||||
alt: "Patient portrait",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Wisdom Teeth",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Dental Implants",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Oral Pathology",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Corrective Surgery",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Sedation Dentistry",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -164,12 +60,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="Commitment to Your Comfort and Care"
|
||||
description="Our practice combines advanced surgical technology with a gentle, patient-centered approach. We are dedicated to providing residents of South Austin with premium oral health services in a soothing, modern facility."
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "#services",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Learn More", href: "#services" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/building-with-modern-design_1127-2284.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -179,21 +70,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Wisdom Teeth Extraction",
|
||||
description: "Safe, gentle removal for optimal oral health and comfort.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-bloody-medical-scalpel_23-2149299250.jpg",
|
||||
},
|
||||
{
|
||||
title: "Dental Implants",
|
||||
description: "High-quality, long-lasting restorations to restore your natural bite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-girl-white-summer-dress-sitting-lounger-black-white-photo_627829-13914.jpg",
|
||||
},
|
||||
{
|
||||
title: "Oral Pathology",
|
||||
description: "Advanced diagnostic evaluation and treatment for oral health conditions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-dentist-examining-patient-teeth-dental-office_651396-3092.jpg",
|
||||
},
|
||||
{ title: "Wisdom Teeth Extraction", description: "Safe, gentle removal for optimal oral health and comfort.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-bloody-medical-scalpel_23-2149299250.jpg" },
|
||||
{ title: "Dental Implants", description: "High-quality, long-lasting restorations to restore your natural bite.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-girl-white-summer-dress-sitting-lounger-black-white-photo_627829-13914.jpg" },
|
||||
{ title: "Oral Pathology", description: "Advanced diagnostic evaluation and treatment for oral health conditions.", imageSrc: "http://img.b2bpic.net/free-photo/male-dentist-examining-patient-teeth-dental-office_651396-3092.jpg" },
|
||||
]}
|
||||
title="Comprehensive Surgical Services"
|
||||
description="Advanced care tailored to your specific needs."
|
||||
@@ -206,24 +85,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
team={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Dr. Sarah Miller",
|
||||
role: "Lead Oral Surgeon",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-male-doctor_171337-1485.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Dr. James Chen",
|
||||
role: "Senior Surgeon",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/labor-union-members-working-together_23-2150995035.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rivera, RN",
|
||||
role: "Patient Care Coordinator",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/healthcare-experts-strategic-meeting-discussing-treatment-protocols_482257-122888.jpg",
|
||||
},
|
||||
{ id: "1", name: "Dr. Sarah Miller", role: "Lead Oral Surgeon", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-male-doctor_171337-1485.jpg" },
|
||||
{ id: "2", name: "Dr. James Chen", role: "Senior Surgeon", imageSrc: "http://img.b2bpic.net/free-photo/labor-union-members-working-together_23-2150995035.jpg" },
|
||||
{ id: "3", name: "Emily Rivera, RN", role: "Patient Care Coordinator", imageSrc: "http://img.b2bpic.net/free-photo/healthcare-experts-strategic-meeting-discussing-treatment-protocols_482257-122888.jpg" },
|
||||
]}
|
||||
title="Our Expert Medical Team"
|
||||
description="Led by board-certified specialists committed to your health."
|
||||
@@ -235,46 +99,8 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Amazing Results",
|
||||
quote: "I am so impressed with the care I received. The staff is professional and truly kind.",
|
||||
name: "Sarah J.",
|
||||
role: "Patient",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-beige-turtleneck-smiling-cheerfully-showing-teeth_141793-54841.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Highly Recommend",
|
||||
quote: "Seamless surgery process. I had zero complications and felt supported the whole way.",
|
||||
name: "Mike P.",
|
||||
role: "Patient",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-handsome-man-against-blue-background_93675-134992.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Professionalism",
|
||||
quote: "The team here knows what they're doing. Very knowledgeable and reassuring.",
|
||||
name: "Anna L.",
|
||||
role: "Patient",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/older-woman-reading-nature-her-countryside-home-smiling_23-2149511698.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Great Team",
|
||||
quote: "Clean office, friendly staff, and the surgery went perfectly. Thank you!",
|
||||
name: "David W.",
|
||||
role: "Patient",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-professional-woman-having-coffee-break-her-full-working-day-she-holds-paper-cup-outdoors-near-business-building-while-relaxing-enjoying-her-beverage_158595-6862.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Comforting Experience",
|
||||
quote: "Oral surgery is never easy, but this office makes it as comfortable as it gets.",
|
||||
name: "Maria K.",
|
||||
role: "Patient",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-concentrated-man-white-shirt_171337-17406.jpg",
|
||||
},
|
||||
{ id: "1", title: "Amazing Results", quote: "I am so impressed with the care I received.", name: "Sarah J.", role: "Patient", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-beige-turtleneck-smiling-cheerfully-showing-teeth_141793-54841.jpg" },
|
||||
{ id: "2", title: "Highly Recommend", quote: "Seamless surgery process. I had zero complications.", name: "Mike P.", role: "Patient", imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-handsome-man-against-blue-background_93675-134992.jpg" },
|
||||
]}
|
||||
title="Patients Trust Our Care"
|
||||
description="Hear directly from those who trust their surgical care to us."
|
||||
@@ -286,21 +112,8 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How long is the recovery?",
|
||||
content: "Recovery times vary based on the procedure, but we provide detailed instructions to keep you comfortable.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you accept insurance?",
|
||||
content: "Yes, we work with most major insurance providers.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Is sedation available?",
|
||||
content: "We offer a range of sedation options tailored for your comfort and safety.",
|
||||
},
|
||||
{ id: "1", title: "How long is the recovery?", content: "Recovery times vary based on the procedure, but we provide detailed instructions to keep you comfortable." },
|
||||
{ id: "2", title: "Do you accept insurance?", content: "Yes, we work with most major insurance providers." },
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about your upcoming surgical procedure."
|
||||
@@ -314,30 +127,9 @@ export default function LandingPage() {
|
||||
title="Contact Our Office"
|
||||
description="Ready to schedule an appointment? Reach out to us today."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "How can we help?",
|
||||
rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/businesswoman-working-with-digital-assistant_23-2149258039.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -345,36 +137,7 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Our Team",
|
||||
href: "#team",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Quick Links", items: [{ label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] }
|
||||
]}
|
||||
logoText="South Austin Oral Surgery"
|
||||
copyrightText="© 2025 South Austin Oral Surgery. All rights reserved."
|
||||
@@ -383,4 +146,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user