Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-28 09:35:03 +00:00

View File

@@ -7,7 +7,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ProductCatalogItem from '@/components/ecommerce/productCatalog/ProductCatalogItem';
export default function LandingPage() {
export default function ProgramsPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -22,141 +22,45 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Team",
id: "/team",
},
{
name: "Programs",
id: "/programs",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="RehabCenter"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Team", id: "/team" },
{ name: "Programs", id: "/programs" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" }
]}
brandName="RehabCenter"
/>
</div>
<div id="programs-list" data-section="programs-list">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "p1",
name: "Neuro-Rehab Program",
brand: "Therapy",
price: "$0",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg?_wi=1",
},
{
id: "p2",
name: "Sports Injury Care",
brand: "Therapy",
price: "$0",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg?_wi=2",
},
{
id: "p3",
name: "Post-Surgical Rehab",
brand: "Therapy",
price: "$0",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg?_wi=3",
},
{
id: "p4",
name: "Geriatric Mobility",
brand: "Therapy",
price: "$0",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg?_wi=4",
},
{
id: "p5",
name: "Stroke Recovery Plan",
brand: "Therapy",
price: "$0",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg?_wi=5",
},
]}
title="Our Training Programs"
description="Evidence-based therapy protocols designed for effective recovery."
/>
</div>
<div id="programs-list" data-section="programs-list">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
title="Our Training Programs"
description="Evidence-based therapy protocols designed for effective recovery."
products={[
{ id: "p1", name: "Neuro-Rehab Program", brand: "Therapy", price: "$0", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg" },
{ id: "p2", name: "Sports Injury Care", brand: "Therapy", price: "$0", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg" },
{ id: "p3", name: "Post-Surgical Rehab", brand: "Therapy", price: "$0", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg" },
{ id: "p4", name: "Geriatric Mobility", brand: "Therapy", price: "$0", rating: 5, reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg" },
{ id: "p5", name: "Stroke Recovery Plan", brand: "Therapy", price: "$0", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg" }
]}
/>
</div>
<div id="ecommerce" data-section="ecommerce">
<ProductCatalogItem
product={{
id: "promo-1",
name: "Total Recovery Package",
price: "$999",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg?_wi=6",
}}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/beautiful-hotel-insights-details_23-2149160770.jpg?_wi=12"
columns={[
{
title: "Pages",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Support",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "FAQ",
href: "#",
},
],
},
]}
logoText="RehabCenter"
/>
</div>
<div id="ecommerce" data-section="ecommerce">
<ProductCatalogItem
product={{
id: "promo-1", name: "Total Recovery Package", price: "$999", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medical-assistant-helping-patient-with-physiotherapy-exercises_23-2149071467.jpg"}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);