6 Commits

Author SHA1 Message Date
0116aedf58 Merge version_4_1782034991102 into main
Merge version_4_1782034991102 into main
2026-06-21 09:44:21 +00:00
kudinDmitriyUp
4c95bba7a6 Bob AI: Update the hero section copy for West End Physiotherapy Clinic. Set headline to 2026-06-21 09:44:14 +00:00
1bc5bf6055 Merge version_3_1782034772632 into main
Merge version_3_1782034772632 into main
2026-06-21 09:41:46 +00:00
kudinDmitriyUp
7fbc9b4631 Bob AI: fix build errors (attempt 1) 2026-06-21 09:41:13 +00:00
kudinDmitriyUp
abfbd4aa94 Bob AI: Add Trusted By section below Hero 2026-06-21 09:40:39 +00:00
58b2be5ed5 Merge version_2_1782034383006 into main
Merge version_2_1782034383006 into main
2026-06-21 09:34:30 +00:00
3 changed files with 43 additions and 7 deletions

View File

@@ -13,10 +13,12 @@ import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
import TrustedBySection from './HomePage/sections/TrustedBy';export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<TrustedBySection />
<AboutSection />

View File

@@ -11,22 +11,22 @@ export default function HeroSection(): React.JSX.Element {
<SectionErrorBoundary name="hero">
<HeroSplitMediaGrid
tag="Clinical Excellence"
title="Restore Your Movement, Reclaim Your Life."
description="West End Physiotherapy provides expert, evidence-based care tailored to your unique recovery needs."
title="Elite Physical Therapy, Tailored to You"
description="Where clinical mastery meets luxury care. Personalized rehabilitation programs designed for professionals who demand results and refinement."
primaryButton={{
text: "Book an Appointment",
text: "Schedule Your Consultation",
href: "#contact",
}}
secondaryButton={{
text: "Our Services",
text: "Explore Services",
href: "#services",
}}
items={[
{
imageSrc: "http://img.b2bpic.net/free-photo/students-learning-cafeteria_23-2147679038.jpg",
imageSrc: "https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/woman-rehabilitation-center-getting-treatment_23-2150356698.jpg",
imageSrc: "https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&q=80",
},
]}
/>

View File

@@ -0,0 +1,34 @@
import ScrollReveal from '@/components/ui/ScrollReveal';
import LoopCarousel from '@/components/ui/LoopCarousel';
export default function TrustedBy() {
const partners = [
"Dhaka Medical College",
"Square Hospital",
"Apollo Hospitals",
"United Hospital",
"Popular Diagnostic Centre",
"Labaid Hospital"
];
return (
<section data-webild-section="trusted-by" id="trusted-by" className="relative w-full bg-background border-b border-foreground/5">
<div className="w-content-width mx-auto">
<ScrollReveal variant="fade">
<p className="text-center text-sm font-medium text-accent mb-8 uppercase tracking-wider">
Trusted by leading healthcare providers
</p>
<LoopCarousel>
{partners.map((partner, index) => (
<div key={index} className="flex items-center justify-center whitespace-nowrap px-8">
<span className="text-xl md:text-2xl font-bold text-foreground/40 hover:text-foreground/80 transition-colors duration-300">
{partner}
</span>
</div>
))}
</LoopCarousel>
</ScrollReveal>
</div>
</section>
);
}