12 Commits

Author SHA1 Message Date
24ca2ea639 Update src/app/page.tsx 2026-01-28 00:42:52 +00:00
1980022097 Update src/app/layout.tsx 2026-01-28 00:42:51 +00:00
8beea5494d Merge version_4 into main
Merge version_4 into main
2026-01-28 00:39:23 +00:00
2ce042ebf0 Update src/app/page.tsx 2026-01-28 00:39:18 +00:00
4c69b3aa8d Update src/app/layout.tsx 2026-01-28 00:39:17 +00:00
3df420e150 Merge version_3 into main
Merge version_3 into main
2026-01-28 00:37:19 +00:00
2855605ee8 Update src/app/page.tsx 2026-01-28 00:37:14 +00:00
13844ef9ca Update src/app/layout.tsx 2026-01-28 00:37:14 +00:00
08dbd6d02a Merge version_2 into main
Merge version_2 into main
2026-01-28 00:34:03 +00:00
7809e2fd2e Update src/app/page.tsx 2026-01-28 00:33:59 +00:00
a1b4ea59bb Update src/app/layout.tsx 2026-01-28 00:33:58 +00:00
0e18adcb71 Update src/app/blog/page.tsx 2026-01-28 00:33:57 +00:00
2 changed files with 22 additions and 25 deletions

View File

@@ -54,7 +54,8 @@ export default function BlogPage() {
const url = `${apiUrl}/posts/${projectId}?status=published`; const url = `${apiUrl}/posts/${projectId}?status=published`;
const response = await fetch(url, { const response = await fetch(url, {
method: "GET", headers: { method: "GET", headers: {
"Content-Type": "application/json"}, "Content-Type": "application/json"
},
}); });
if (response.ok) { if (response.ok) {
@@ -85,7 +86,7 @@ export default function BlogPage() {
<ThemeProvider <ThemeProvider
defaultButtonVariant="shift-hover" defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="pill"
contentWidth="mediumSmall" contentWidth="mediumSmall"
sizing="largeSmallSizeMediumTitles" sizing="largeSmallSizeMediumTitles"
background="floatingGradient" background="floatingGradient"

View File

@@ -1,10 +1,10 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
@@ -17,7 +17,7 @@ export default function LandingPage() {
<ThemeProvider <ThemeProvider
defaultButtonVariant="shift-hover" defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="soft" borderRadius="pill"
contentWidth="mediumSmall" contentWidth="mediumSmall"
sizing="largeSmallSizeMediumTitles" sizing="largeSmallSizeMediumTitles"
background="floatingGradient" background="floatingGradient"
@@ -80,32 +80,28 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="services" data-section="services"> <div id="webild-1769560547864-3e8m6xcy5" data-section="webild-1769560547864-3e8m6xcy5">
<FeatureCardTwelve <MetricCardTwo
title="Our Chiropractic Services" metrics={[
description="Comprehensive care tailored to your unique needs and health goals"
tag="Services"
tagIcon={Zap}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground="noInvert"
features={[
{ {
id: "spinal", label: "Spinal Care", title: "Spinal Adjustments & Alignment", items: [ id: "1", value: "15K+", description: "Patients treated and helped return to active lifestyles"
"Corrective spinal adjustments", "Alignment restoration", "Chronic pain relief", "Posture improvement"
]
}, },
{ {
id: "sports", label: "Sports Medicine", title: "Athletic Performance & Injury Prevention", items: [ id: "2", value: "98%", description: "Patient satisfaction rate with our care and treatment outcomes"
"Sports injury treatment", "Performance optimization", "Injury prevention programs", "Recovery acceleration"
]
}, },
{ {
id: "wellness", label: "Wellness Care", title: "Preventive Health & Maintenance", items: [ id: "3", value: "25+", description: "Years of combined clinical experience on our team"
"Wellness consultations", "Lifestyle coaching", "Ergonomic assessments", "Long-term health planning" },
] {
id: "4", value: "99%", description: "Treatment success rate for common musculoskeletal conditions"
} }
]} ]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
title="Trusted by thousands of patients for their health and wellness needs."
description="See how we're making a difference"
textboxLayout="default"
useInvertedBackground="invertDefault"
/> />
</div> </div>