11 Commits

Author SHA1 Message Date
9513f7acf4 Update src/app/page.tsx 2025-12-29 10:29:06 +00:00
8a6a36730c Update src/app/page.tsx 2025-12-28 13:58:13 +00:00
c785c25ac3 Update src/app/page.tsx 2025-12-28 13:56:01 +00:00
5a3436354c Update src/app/page.tsx 2025-12-28 13:53:18 +00:00
de2e56f5e1 Update src/app/layout.tsx 2025-12-28 13:53:17 +00:00
8dd32a9909 Update src/app/page.tsx 2025-12-28 13:50:57 +00:00
035b5e604f Update src/app/layout.tsx 2025-12-28 13:50:57 +00:00
1c4074af39 Update src/app/globals.css 2025-12-28 13:46:16 +00:00
3c6750625b Update src/app/page.tsx 2025-12-28 13:44:29 +00:00
421468d924 Update src/app/layout.tsx 2025-12-28 13:44:28 +00:00
339880a66a Update src/app/globals.css 2025-12-28 13:44:27 +00:00
3 changed files with 151 additions and 14 deletions

View File

@@ -7,10 +7,10 @@
--background: #ffffff;; --background: #ffffff;;
--card: #fafafa;; --card: #fafafa;;
--foreground: #000000;; --foreground: #000000;;
--primary-cta: #ff6600;; --primary-cta: #409fff;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #e5e5e5;; --accent: #c7e2fc;;
--background-accent: #f5f5f5;; --background-accent: #9bcfff;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-plus-jakarta-sans), sans-serif; font-family: var(--font-inter), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-plus-jakarta-sans), sans-serif; font-family: var(--font-inter), sans-serif;
} }

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Plus_Jakarta_Sans } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const plusJakartaSans = Plus_Jakarta_Sans({ const inter = Inter({
variable: "--font-plus-jakarta-sans", variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -35,7 +35,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={plusJakartaSans.variable} className={inter.variable}
> >
<Tag /> <Tag />
{children} {children}
@@ -1261,4 +1261,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,12 +1,13 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine'; import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine';
import TeamCardThree from '@/components/sections/team/TeamCardThree';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterSplit from '@/components/sections/footer/FooterSplit'; import FooterSplit from '@/components/sections/footer/FooterSplit';
import { Phone, Mail, MapPin } from "lucide-react"; import { Phone, Mail, MapPin, Users, Linkedin } from "lucide-react";
export default function Page() { export default function Page() {
return ( return (
@@ -28,6 +29,7 @@ export default function Page() {
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "Our Cases", id: "cases" }, { name: "Our Cases", id: "cases" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
@@ -39,7 +41,7 @@ export default function Page() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroOverlay <HeroOverlay
title="Your Path to Recovery Starts Here" title="Your Path to Recovery"
description="Professional addiction recovery center dedicated to helping individuals reclaim their lives through compassionate care and evidence-based treatment." description="Professional addiction recovery center dedicated to helping individuals reclaim their lives through compassionate care and evidence-based treatment."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766754765343-zikp31v3.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766754765343-zikp31v3.jpg"
imageAlt="Recovery and healing" imageAlt="Recovery and healing"
@@ -95,6 +97,140 @@ export default function Page() {
/> />
</div> </div>
<div id="team" data-section="team">
<TeamCardThree
members={[
{
id: "1",
name: "Dr. Sarah Johnson",
role: "Medical Director",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929318409-kyt0epdo.jpg",
imageAlt: "Dr. Sarah Johnson",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/sarahjohnson" }
]
},
{
id: "2",
name: "Michael Chen",
role: "Clinical Therapist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929156367-4vs8nuk8.jpg",
imageAlt: "Michael Chen",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/michaelchen" }
]
},
{
id: "3",
name: "Emma Davis",
role: "Counselor",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929157319-yldoyv48.jpg",
imageAlt: "Emma Davis",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/emmadavis" }
]
},
{
id: "4",
name: "James Wilson",
role: "Addiction Specialist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929158175-8ey96anb.jpg",
imageAlt: "James Wilson",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/jameswilson" }
]
},
{
id: "5",
name: "Lisa Martinez",
role: "Nutritionist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929318409-kyt0epdo.jpg",
imageAlt: "Lisa Martinez",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/lisamartinez" }
]
},
{
id: "6",
name: "David Thompson",
role: "Fitness Coordinator",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929156367-4vs8nuk8.jpg",
imageAlt: "David Thompson",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/davidthompson" }
]
},
{
id: "7",
name: "Rachel Green",
role: "Family Counselor",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929157319-yldoyv48.jpg",
imageAlt: "Rachel Green",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/rachelgreen" }
]
},
{
id: "8",
name: "Dr. Mark Anderson",
role: "Psychiatrist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929158175-8ey96anb.jpg",
imageAlt: "Dr. Mark Anderson",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/markanderson" }
]
},
{
id: "9",
name: "Patricia Lewis",
role: "Wellness Coach",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929318409-kyt0epdo.jpg",
imageAlt: "Patricia Lewis",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/patricialewis" }
]
},
{
id: "10",
name: "Kevin Hall",
role: "Career Counselor",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929156367-4vs8nuk8.jpg",
imageAlt: "Kevin Hall",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/kevinhall" }
]
},
{
id: "11",
name: "Jennifer White",
role: "Art Therapist",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929157319-yldoyv48.jpg",
imageAlt: "Jennifer White",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/jenniferwhite" }
]
},
{
id: "12",
name: "Dr. Thomas Reed",
role: "Chief Medical Officer",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929158175-8ey96anb.jpg",
imageAlt: "Dr. Thomas Reed",
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com/in/thomasreed" }
]
}
]}
animationType="slide-up"
title="Meet Our Specialists"
description="Our dedicated team of experienced professionals is committed to your recovery journey. Each specialist brings unique expertise and compassion to support your healing."
textboxLayout="default"
useInvertedBackground="noInvert"
tag="Our Team"
tagIcon={Users}
/>
</div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactText
text="Ready to take the first step toward recovery?" text="Ready to take the first step toward recovery?"
@@ -117,6 +253,7 @@ export default function Page() {
items: [ items: [
{ label: "Home", href: "#hero" }, { label: "Home", href: "#hero" },
{ label: "Our Cases", href: "#cases" }, { label: "Our Cases", href: "#cases" },
{ label: "Team", href: "#team" },
{ label: "Contact", href: "#contact" } { label: "Contact", href: "#contact" }
] ]
}, },
@@ -138,4 +275,4 @@ export default function Page() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }