Compare commits
6 Commits
version_2_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 0116aedf58 | |||
|
|
4c95bba7a6 | ||
| 1bc5bf6055 | |||
|
|
7fbc9b4631 | ||
|
|
abfbd4aa94 | ||
| 58b2be5ed5 |
@@ -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 />
|
||||
|
||||
|
||||
@@ -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",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
34
src/pages/HomePage/sections/TrustedBy.tsx
Normal file
34
src/pages/HomePage/sections/TrustedBy.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user