5 Commits

Author SHA1 Message Date
cb89a56927 Update src/app/globals.css 2025-12-25 14:24:39 +00:00
0291fc4763 Update src/app/globals.css 2025-12-25 14:21:08 +00:00
ac78de9f13 Update src/app/page.tsx 2025-12-25 12:12:53 +00:00
ec5eed423f Update src/app/page.tsx 2025-12-25 12:10:39 +00:00
976374991a Update src/app/page.tsx 2025-12-25 11:48:07 +00:00
2 changed files with 72 additions and 16 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #f7fafd;;
--card: #eff6fc;;
--foreground: #1a2433;;
--primary-cta: #2563eb;;
--secondary-cta: #ffffff;;
--accent: #f8c093;;
--background-accent: #f5b78b;;
--background: #000602;
--card: #0d1d0d;
--foreground: #e6ffe6;
--primary-cta: #1cde5d;
--secondary-cta: #0a1f0f;
--accent: #2e6841;
--background-accent: #0d6b32;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-merriweather), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-merriweather), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -6,7 +6,8 @@ import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarou
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FeatureCardTwenty from '@/components/sections/feature/FeatureCardTwenty';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import TeamCardSeven from '@/components/sections/team/TeamCardSeven';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSocial from '@/components/sections/footer/FooterSocial';
@@ -165,38 +166,93 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
cardTitle="Thousands of patients have found healing and hope at MindCare Hospital"
cardTag="Patient Recovery Stories"
cardTagIcon={Star}
<div id="doctors-portfolio" data-section="doctors-portfolio">
<TeamCardSeven
team={[
{
id: "1",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766662878922-vtd1wf9m.jpg",
imageAlt: "Dr. Sarah Mitchell"
},
{
id: "2",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766490826727-dlrt5e1i.jpg",
imageAlt: "Dr. James Chen"
},
{
id: "3",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766662879539-p0wew2k5.jpg",
imageAlt: "Margaret Rodriguez"
},
{
id: "4",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766662880136-ik9s4pdk.jpg",
imageAlt: "David Thompson"
},
{
id: "5",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766662878922-vtd1wf9m.jpg",
imageAlt: "Dr. Sarah Mitchell"
},
{
id: "6",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766490826727-dlrt5e1i.jpg",
imageAlt: "Dr. James Chen"
}
]}
title="Our Patients Portfolio"
useInvertedBackground="noInvert"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
testimonials={[
{
id: "1",
name: "Emily Rodriguez",
role: "Patient Success Story",
company: "MindCare Patient",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766490270889-y1dksta5.jpg",
imageAlt: "Emily Rodriguez"
},
{
id: "2",
name: "Michael Johnson",
role: "Patient Success Story",
company: "MindCare Patient",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766662880791-wt9zcp3m.jpg",
imageAlt: "Michael Johnson"
},
{
id: "3",
name: "Jessica Williams",
role: "Patient Success Story",
company: "MindCare Patient",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766662881397-kmy1tetm.jpg",
imageAlt: "Jessica Williams"
},
{
id: "4",
name: "Robert Davis",
role: "Patient Success Story",
company: "MindCare Patient",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766662882241-ilmpcgta.jpg",
imageAlt: "Robert Davis"
}
]}
title="What Our Patients Say"
description="Hear from individuals who have experienced transformation and healing through our comprehensive treatment programs."
tag="Testimonials"
tagIcon={Star}
textboxLayout="default"
useInvertedBackground="noInvert"
animationType="slide-up"
gridVariant="uniform-all-items-equal"
/>
</div>