Compare commits

...

31 Commits

Author SHA1 Message Date
6986f17bff Update src/app/page.tsx 2026-04-24 02:40:04 +00:00
b927def71b Merge version_38 into main
Merge version_38 into main
2026-04-24 02:34:42 +00:00
c50208515c Update src/app/page.tsx 2026-04-24 02:34:39 +00:00
fc639af71d Merge version_37 into main
Merge version_37 into main
2026-04-24 02:29:18 +00:00
12c6bf4b5c Update src/app/page.tsx 2026-04-24 02:29:15 +00:00
1eca2ea080 Merge version_36 into main
Merge version_36 into main
2026-04-24 02:27:24 +00:00
923545739d Update src/app/page.tsx 2026-04-24 02:27:18 +00:00
0c24cee40e Merge version_35 into main
Merge version_35 into main
2026-04-24 02:25:36 +00:00
6e39887b23 Update src/app/page.tsx 2026-04-24 02:25:33 +00:00
b817834eba Merge version_34 into main
Merge version_34 into main
2026-04-24 02:23:40 +00:00
b4dad887a0 Update src/app/page.tsx 2026-04-24 02:23:34 +00:00
645165a9b8 Merge version_33 into main
Merge version_33 into main
2026-04-24 02:08:14 +00:00
0febd7d4c8 Update src/app/page.tsx 2026-04-24 02:08:11 +00:00
7e41ab0529 Merge version_33 into main
Merge version_33 into main
2026-04-24 02:04:58 +00:00
054f95cd88 Update theme fonts 2026-04-24 02:04:55 +00:00
e11de79b92 Update theme fonts 2026-04-24 02:04:54 +00:00
c7452a0cc4 Merge version_33 into main
Merge version_33 into main
2026-04-24 01:50:00 +00:00
bd4dde5017 Update src/app/page.tsx 2026-04-24 01:49:57 +00:00
c0724f1950 Merge version_32 into main
Merge version_32 into main
2026-04-24 01:46:35 +00:00
1f6a179d13 Update src/app/page.tsx 2026-04-24 01:46:29 +00:00
42c9ca4374 Merge version_31 into main
Merge version_31 into main
2026-04-24 01:43:13 +00:00
5b26842574 Update src/app/page.tsx 2026-04-24 01:43:10 +00:00
ea71ad7b2e Merge version_30 into main
Merge version_30 into main
2026-04-24 01:41:17 +00:00
a01361de60 Update src/app/page.tsx 2026-04-24 01:41:14 +00:00
1c416bf5c0 Merge version_29 into main
Merge version_29 into main
2026-04-24 01:37:22 +00:00
58ba19faaa Update src/app/page.tsx 2026-04-24 01:37:16 +00:00
e0433dd5c1 Merge version_29 into main
Merge version_29 into main
2026-04-24 00:00:33 +00:00
b89c1f032c Update src/app/page.tsx 2026-04-24 00:00:30 +00:00
95faf0eeda Merge version_28 into main
Merge version_28 into main
2026-04-23 23:59:19 +00:00
1f74552290 Update src/app/page.tsx 2026-04-23 23:59:15 +00:00
98ce9c88f3 Merge version_27 into main
Merge version_27 into main
2026-04-23 23:58:24 +00:00
3 changed files with 52 additions and 41 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google"; import { Mulish } from "next/font/google";
import { DM_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google";
import { Inter_Tight } from "next/font/google";
@@ -17,13 +18,11 @@ export const metadata: Metadata = {
const dmSans = DM_Sans({
variable: "--font-dm-sans", const interTight = Inter_Tight({
subsets: ["latin"], variable: "--font-inter-tight",
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -34,7 +33,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}> <body className={`${interTight.variable} antialiased`}>
{children} {children}
<script <script

View File

@@ -7,12 +7,11 @@ import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import HeroSplit from '@/components/sections/hero/HeroSplit';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Moon, Sparkles, Wind } from "lucide-react"; import { Moon, Sparkles, Wind, Podcast, Smile, Mail } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -35,24 +34,24 @@ export default function LandingPage() {
{ name: "Home", id: "#hero" }, { name: "Home", id: "#hero" },
{ name: "Bio", id: "#about" }, { name: "Bio", id: "#about" },
{ name: "Services", id: "#features" }, { name: "Services", id: "#features" },
{ name: "Courses", id: "#products" },
{ name: "Reviews", id: "#testimonials" }, { name: "Reviews", id: "#testimonials" },
{ name: "Contact", id: "#contact" }, { name: "Contact", id: "#contact" },
]} ]}
brandName="Olivia Lallouz" brandName="Olivia Lallouz"
button={{ text: "Start Your Evaluation", href: "#contact" }} button={{ text: "Book Your Professional Evaluation", onClick: () => { if (window.innerWidth < 768) { window.location.href = "tel:+19544429422"; } else { window.location.href = "mailto:olivia@specializedspch.com"; } } }}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboard <HeroSplit
background={{ variant: "plain"}} background={{ variant: "plain"}}
title="Breathe Better. Sleep Deeper. Live Beautifully." title="Breathe Better. Sleep Deeper. Live Beautifully."
description="Olivia Lallouz • Orofacial Myologist" description="Olivia Lallouz • Orofacial Myologist"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ClWbrS92bXmt7LmjB3TsGBCnuR/uploaded-1776966178389-c97cn8rw.png" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ClWbrS92bXmt7LmjB3TsGBCnuR/uploaded-1776966178389-c97cn8rw.png"
imageAlt="Olivia Lallouz" imageAlt="Olivia Lallouz"
buttons={[{ text: "Start Your Evaluation", href: "#contact" }]} buttons={[{ text: "Book Your Professional Evaluation", href: "#contact" }]}
buttonClassName="bg-primary text-primary-foreground font-bold" buttonClassName="bg-primary text-primary-foreground font-bold"
mediaAnimation="blur-reveal"
/> />
</div> </div>
@@ -61,15 +60,30 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
title="Olivia Lallouz, MS, CCC-SLP | Qualified Orofacial Myologist | PhD Candidate" title="Olivia Lallouz, MS, CCC-SLP | Qualified Orofacial Myologist | PhD Candidate"
metrics={[ metrics={[
{ label: "Board Certified SLP/QOM", value: "Board Certified SLP/QOM ", icon: Sparkles }, { label: "Board Certified SLP/QOM", value: "", icon: Sparkles },
{ label: "Focus", value: "Neurorehabilitation", icon: Wind }, { label: "Neurorehabiliation ", value: "", icon: Wind },
{ label: "Approach", value: "Evidence-Based", icon: Moon }, { label: "Evidence-Based ", value: "", icon: Moon },
]} ]}
metricsAnimation="blur-reveal" metricsAnimation="blur-reveal"
/> />
<div className="max-w-3xl mx-auto py-12 px-6 text-foreground/80 leading-relaxed"> <div className="max-w-3xl mx-auto py-12 px-6 text-foreground/80 leading-relaxed">
<p className="mb-6">I am a certified speech-language pathologist and qualified orofacial myologist (QOM) currently pursuing a PhD in Biomedical Sciences, with a research focus on neurological disorders, particularly the assessment and progression in conditions such as ALS. My work bridges clinical practice and translational research, with the goal of advancing early detection and intervention strategies for neurodegenerative disease.</p> <p className="mb-6">I am a board certified speech-language pathologist and qualified orofacial myologist (QOM) currently pursuing a PhD in Biomedical Sciences, with a research focus on neurological functions, disorders, particularly the assessment and progression in conditions such as ALS, ADHD, Sleep disorders, and orofacial myofunctional disorders. My work bridges clinical practice and translational research. </p>
<p className="mb-6">With extensive clinical experience across hospitals, outpatient clinics, and interdisciplinary care teams, I specialize in the diagnosis and treatment of speech, language, swallowing, and cognitive impairments resulting from neurological injury or disease. I bring a strong foundation in evidence-based care, and am skilled in integrating clinical assessment with objective diagnostic tools to support comprehensive, individualized treatment planning. My passion lies at the intersection of neurorehabilitation, orofacial myology, and research innovation. I am dedicated to improving quality of life through both direct patient care and research that informs and elevates clinical standards.</p> <p className="mb-6">With extensive clinical experience across hospitals, outpatient clinics, and interdisciplinary care teams, I specialize in the diagnosis and treatment of speech, language, swallowing, and cognitive impairments resulting from neurological injury, disease, and dysfunction. I bring a strong foundation in evidence-based care, and am skilled in integrating clinical assessment with objective diagnostic tools to support comprehensive, individualized treatment planning. My passion lies at the intersection of neurorehabilitation, orofacial myology, and research innovation. I am dedicated to improving quality of life through both direct patient care and research that informs and elevates clinical standards.</p>
<div className="mt-8 p-6 bg-card rounded-2xl flex flex-col items-center text-center gap-4 border border-accent">
<Podcast className="w-10 h-10 text-primary" />
<h3 className="text-xl font-semibold">Podcast Feature: Dr. Stanley Liu</h3>
<p className="text-sm leading-relaxed opacity-90">
Tune into my podcast with Dr. Stanley Liu, UCSF & Stanford-trained surgeon and former Stanford Sleep Surgery Fellowship Director, where we explore how orofacial myofunctional therapy optimizes breathing, enhances facial beauty, improves teeth alignment, and transforms sleep quality.
</p>
<a
href="https://youtu.be/e8mpzH0Eqt8?si=erXh4Nyyf-Hxu06w"
target="_blank"
rel="noopener noreferrer"
className="mt-2 px-6 py-2 bg-primary text-primary-foreground rounded-full font-medium hover:opacity-90 transition-opacity"
>
Listen on YouTube
</a>
</div>
</div> </div>
</div> </div>
@@ -81,29 +95,14 @@ export default function LandingPage() {
accordionItems={[ accordionItems={[
{ id: "1", title: "Eliminate Sleep-Disrupting Mouth Breathing", content: "Wake up refreshed by eliminating sleep-disrupting mouth breathing through optimized airway function." }, { id: "1", title: "Eliminate Sleep-Disrupting Mouth Breathing", content: "Wake up refreshed by eliminating sleep-disrupting mouth breathing through optimized airway function." },
{ id: "2", title: "Resolve Chronic Jaw Tension", content: "Restore proper jaw positioning and eliminate tension through specialized myofunctional techniques that target the root cause of grinding." }, { id: "2", title: "Resolve Chronic Jaw Tension", content: "Restore proper jaw positioning and eliminate tension through specialized myofunctional techniques that target the root cause of grinding." },
{ id: "3", title: "Optimize Daily Breathing Efficiency", content: "Transform your daily breathing habits by reinforcing nasal breathing to support your long-term wellness and vitality." }, { id: "3", title: "Orthodontic Tongue Thrust Correction", content: "Correct persistent tongue thrust patterns to maintain your orthodontic results, ensure an aligned bite, and support long-term dental health." },
{ id: "4", title: "Optimize Daily Breathing Efficiency", content: "Transform your daily breathing habits by reinforcing nasal breathing to support your long-term wellness and vitality." },
]} ]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ClWbrS92bXmt7LmjB3TsGBCnuR/uploaded-1776988556675-epe5pvgv.png" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ClWbrS92bXmt7LmjB3TsGBCnuR/uploaded-1776988556675-epe5pvgv.png"
mediaAnimation="blur-reveal" mediaAnimation="blur-reveal"
/> />
</div> </div>
<div id="products" data-section="products">
<ProductCardTwo
animationType="blur-reveal"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{ id: "p1", brand: "Course", name: "Master Your Myofunctional Foundation", price: "$150", rating: 5, reviewCount: "24", imageSrc: "http://img.b2bpic.net/free-photo/medic-equipment-desk_23-2148519752.jpg" },
{ id: "p2", brand: "Course", name: "Transform Your Sleep Quality", price: "$195", rating: 5, reviewCount: "18", imageSrc: "http://img.b2bpic.net/free-vector/creative-hand-drawn-tree-yoga-gym-our-services-flyer_742173-1347.jpg" },
{ id: "p3", brand: "Course", name: "Jaw Tension Relief", price: "$120", rating: 4, reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/staistics-business-strategy-planning-research-digital-tablet-concept_53876-26413.jpg" },
]}
title="Start Your Transformation"
description="Access my specialized programs designed to help you build essential habits for lasting change."
/>
</div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardTwo <MetricCardTwo
animationType="blur-reveal" animationType="blur-reveal"
@@ -141,9 +140,13 @@ export default function LandingPage() {
faqs={[ faqs={[
{ id: "q1", title: "What is orofacial myology?", content: "A specialized therapy focusing on tongue, jaw, and facial muscle function to enhance breathing, sleep, and overall wellness." }, { id: "q1", title: "What is orofacial myology?", content: "A specialized therapy focusing on tongue, jaw, and facial muscle function to enhance breathing, sleep, and overall wellness." },
{ id: "q2", title: "How do online sessions work?", content: "I offer personalized video consultations to guide you through specific exercises and therapy protocols from the comfort of your home." }, { id: "q2", title: "How do online sessions work?", content: "I offer personalized video consultations to guide you through specific exercises and therapy protocols from the comfort of your home." },
{ id: "q3", title: "How long until I see results?", content: "While individual progress varies, most clients begin to notice subtle improvements in muscle awareness and comfort within the first 3-4 weeks of consistent practice." },
{ id: "q4", title: "What is the scientific foundation of your therapy?", content: "My approach is grounded in peer-reviewed neurorehabilitation research and orofacial myofunctional principles, integrating objective diagnostic metrics to ensure evidence-based, clinically validated care." },
{ id: "q5", title: "What credentials support your practice?", content: "I am a board-certified Speech-Language Pathologist and Qualified Orofacial Myologist (QOM) currently pursuing a PhD in Biomedical Sciences, ensuring that every therapeutic intervention is backed by the latest clinical research and scientific advancements in the field." }
]} ]}
title="How My Therapy Works" title="How My Therapy Works"
description="Find answers to help you start your journey." description="Find answers to help you start your journey."
buttons={[{ text: "Book your consultation", href: "#contact" }]}
faqsAnimation="blur-reveal" faqsAnimation="blur-reveal"
/> />
</div> </div>
@@ -153,11 +156,20 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
background={{ variant: "plain"}} background={{ variant: "plain"}}
text="Ready to Transform Your Wellness?" text="Ready to Transform Your Wellness?"
buttons={[{ text: "Schedule your evaluation", href: "#" }]} buttons={[
{ text: "Schedule your evaluation", onClick: () => { if (window.innerWidth < 768) { window.location.href = "tel:+19544429422"; } else { window.location.href = "mailto:olivia@specializedspch.com"; } } },
{ text: "Email Us", href: "mailto:olivia@specializedspch.com" }
]}
className="text-center" className="text-center"
/> />
<div className="text-center text-sm text-foreground/60 py-4"> <div className="max-w-xl mx-auto text-center text-sm text-foreground/80 py-8 space-y-2">
*Insurance is accepted only in Florida. All international or out-of-state clients are private pay. <p className="font-semibold">On-site services at Specialized Speech Center</p>
<p>3335 N University Dr #5, Hollywood, FL 33024</p>
<p className="flex items-center justify-center gap-2">
Phone: (954) 442-9422 | <Mail className="w-4 h-4" /> Email: olivia@specializedspch.com
</p>
<p className="pt-2">Zoom telehealth sessions available.</p>
<p className="pt-4">*Insurance is accepted only in Florida. All international or out-of-state clients are private pay.</p>
</div> </div>
</div> </div>

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-inter), sans-serif; font-family: var(--font-inter-tight), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-dm-sans), sans-serif; font-family: var(--font-inter-tight), sans-serif;
} }