5 Commits

Author SHA1 Message Date
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
4c1ae4e162 Update src/app/page.tsx 2025-12-28 13:43:10 +00:00
0f769b1eee Update src/app/page.tsx 2025-12-28 13:42:04 +00:00
3 changed files with 11 additions and 11 deletions

View File

@@ -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,4 +1,4 @@
"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';
@@ -64,7 +64,7 @@ export default function Page() {
quote: "The staff here genuinely cared about my recovery. Their comprehensive approach helped me understand the root of my addiction and gave me tools I never had before.", quote: "The staff here genuinely cared about my recovery. Their comprehensive approach helped me understand the root of my addiction and gave me tools I never had before.",
name: "Patient A", name: "Patient A",
role: "6 months sober", role: "6 months sober",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766787048952-6sxyqnd2.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766929318409-kyt0epdo.jpg",
imageAlt: "Patient success story" imageAlt: "Patient success story"
}, },
{ {
@@ -97,7 +97,7 @@ export default function Page() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactText
text="Ready to take the first step toward recovery? Our admissions team is here to answer your questions and help you get started on your healing journey." text="Ready to take the first step toward recovery?"
animationType="reveal-blur" animationType="reveal-blur"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
buttons={[ buttons={[
@@ -138,4 +138,4 @@ export default function Page() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }