Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8dd32a9909 | |||
| 035b5e604f | |||
| 1c4074af39 | |||
| 3c6750625b | |||
| 421468d924 | |||
| 339880a66a |
@@ -7,10 +7,10 @@
|
||||
--background: #ffffff;;
|
||||
--card: #fafafa;;
|
||||
--foreground: #000000;;
|
||||
--primary-cta: #ff6600;;
|
||||
--primary-cta: #409fff;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #e5e5e5;;
|
||||
--background-accent: #f5f5f5;;
|
||||
--accent: #c7e2fc;;
|
||||
--background-accent: #9bcfff;;
|
||||
|
||||
/* 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-plus-jakarta-sans), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-plus-jakarta-sans), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
@@ -1,11 +1,11 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Plus_Jakarta_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const plusJakartaSans = Plus_Jakarta_Sans({
|
||||
variable: "--font-plus-jakarta-sans",
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -35,7 +35,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={plusJakartaSans.variable}
|
||||
className={inter.variable}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
105
src/app/page.tsx
105
src/app/page.tsx
@@ -1,12 +1,13 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine';
|
||||
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterSplit from '@/components/sections/footer/FooterSplit';
|
||||
import { Phone, Mail, MapPin } from "lucide-react";
|
||||
import { Phone, Mail, MapPin, Users } from "lucide-react";
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
@@ -28,6 +29,7 @@ export default function Page() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Our Cases", id: "cases" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
button={{
|
||||
@@ -95,6 +97,104 @@ export default function Page() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardFive
|
||||
team={[
|
||||
{
|
||||
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"
|
||||
},
|
||||
{
|
||||
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"
|
||||
},
|
||||
{
|
||||
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"
|
||||
},
|
||||
{
|
||||
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"
|
||||
},
|
||||
{
|
||||
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"
|
||||
},
|
||||
{
|
||||
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"
|
||||
},
|
||||
{
|
||||
id: "7",
|
||||
name: "Rachel Kim",
|
||||
role: "Family Therapist",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929157319-yldoyv48.jpg",
|
||||
imageAlt: "Rachel Kim"
|
||||
},
|
||||
{
|
||||
id: "8",
|
||||
name: "Thomas Anderson",
|
||||
role: "Peer Counselor",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929158175-8ey96anb.jpg",
|
||||
imageAlt: "Thomas Anderson"
|
||||
},
|
||||
{
|
||||
id: "9",
|
||||
name: "Jennifer Lopez",
|
||||
role: "Psychiatric Nurse",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929318409-kyt0epdo.jpg",
|
||||
imageAlt: "Jennifer Lopez"
|
||||
},
|
||||
{
|
||||
id: "10",
|
||||
name: "Christopher Brown",
|
||||
role: "Program Manager",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929156367-4vs8nuk8.jpg",
|
||||
imageAlt: "Christopher Brown"
|
||||
},
|
||||
{
|
||||
id: "11",
|
||||
name: "Amanda White",
|
||||
role: "Mental Health Counselor",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929157319-yldoyv48.jpg",
|
||||
imageAlt: "Amanda White"
|
||||
},
|
||||
{
|
||||
id: "12",
|
||||
name: "Kevin Taylor",
|
||||
role: "Recovery Coach",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929158175-8ey96anb.jpg",
|
||||
imageAlt: "Kevin Taylor"
|
||||
}
|
||||
]}
|
||||
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">
|
||||
<ContactText
|
||||
text="Ready to take the first step toward recovery?"
|
||||
@@ -117,6 +217,7 @@ export default function Page() {
|
||||
items: [
|
||||
{ label: "Home", href: "#hero" },
|
||||
{ label: "Our Cases", href: "#cases" },
|
||||
{ label: "Team", href: "#team" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user