Compare commits

...

5 Commits

Author SHA1 Message Date
0febd7d4c8 Update src/app/page.tsx 2026-04-24 02:08:11 +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
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
3 changed files with 15 additions and 12 deletions

View File

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

View File

@@ -68,7 +68,7 @@ export default function LandingPage() {
/>
<div className="max-w-3xl mx-auto py-12 px-6 text-foreground/80 leading-relaxed">
<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, 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>
<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. Tune into my podcast with Dr. Stanley Liu, UCSF &amp; 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 qualityhttps://youtu.be/e8mpzH0Eqt8</p>
</div>
</div>
@@ -143,8 +143,12 @@ export default function LandingPage() {
buttons={[{ text: "Schedule your evaluation", href: "#" }]}
className="text-center"
/>
<div className="text-center text-sm text-foreground/60 py-4">
*Insurance is accepted only in Florida. All international or out-of-state clients are private pay.
<div className="max-w-xl mx-auto text-center text-sm text-foreground/80 py-8 space-y-2">
<p className="font-semibold">On-site services at Specialized Speech Center</p>
<p>3335 N University Dr #5, Hollywood, FL 33024</p>
<p>Phone: (954) 442-9422 | 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>

View File

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