Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d7ff7577ec | |||
| d2d0142a3b | |||
| 4daa74ea8c | |||
| 1da6967dc7 | |||
| bda527d2da | |||
| 6b04039c7d |
@@ -1,8 +1,8 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
@@ -29,16 +29,21 @@ export default function Home() {
|
|||||||
<NavbarStyleApple navItems={navItems} brandName="ClinicName" />
|
<NavbarStyleApple navItems={navItems} brandName="ClinicName" />
|
||||||
<main className="flex min-h-screen flex-col items-center justify-between">
|
<main className="flex min-h-screen flex-col items-center justify-between">
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardGallery
|
<HeroSplitDoubleCarousel
|
||||||
title="Your Health, Our Priority"
|
title="Your Health, Our Priority"
|
||||||
description="Providing exceptional care with compassion and expertise. Discover our comprehensive services designed for your well-being."
|
description="Providing exceptional care with compassion and expertise. Discover our comprehensive services designed for your well-being."
|
||||||
background={{ variant: 'radial-gradient' }}
|
background={{ variant: 'radial-gradient' }}
|
||||||
mediaItems={[
|
leftCarouselItems={[
|
||||||
{ imageSrc: 'https://images.unsplash.com/photo-1576091160550-2173dba99934?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', imageAlt: 'Doctor consulting patient' },
|
{ imageSrc: 'https://images.unsplash.com/photo-1576091160550-2173dba99934?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', imageAlt: 'Doctor consulting patient' },
|
||||||
{ imageSrc: 'https://images.unsplash.com/photo-1585435557343-3b0226bc7811?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', imageAlt: 'Medical instruments' },
|
{ imageSrc: 'https://images.unsplash.com/photo-1585435557343-3b0226bc7811?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', imageAlt: 'Medical instruments' },
|
||||||
{ imageSrc: 'https://images.unsplash.com/photo-1538108425244-a9578297b69c?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', imageAlt: 'Nurse taking blood pressure' }
|
{ imageSrc: 'https://images.unsplash.com/photo-1538108425244-a9578297b69c?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', imageAlt: 'Nurse taking blood pressure' }
|
||||||
]}
|
]}
|
||||||
buttons={[{ text: 'Explore Services', href: '/services' }]} />
|
rightCarouselItems={[
|
||||||
|
{ imageSrc: 'https://images.unsplash.com/photo-1584820927478-87b4fd4a319d?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', imageAlt: 'Doctor and patient talking' },
|
||||||
|
{ imageSrc: 'https://images.unsplash.com/photo-1579126038378-6548a306132f?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D', imageAlt: 'Medical laboratory' }
|
||||||
|
]}
|
||||||
|
buttons={[{ text: 'Explore Services', href: '/services' }]}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
|
|||||||
Reference in New Issue
Block a user