Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-04-20 04:46:27 +00:00

View File

@@ -24,38 +24,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Programmes",
id: "/programmes",
},
{
name: "Accommodation",
id: "/accommodation",
},
{
name: "Pricing",
id: "/pricing",
},
{
name: "Testimonials",
id: "/testimonials",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Programmes", id: "/programmes" },
{ name: "Accommodation", id: "/accommodation" },
{ name: "Pricing", id: "/pricing" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="Aloe Valley"
/>
@@ -63,30 +39,16 @@ export default function LandingPage() {
<div id="accommodation-options" data-section="accommodation-options">
<FeatureCardMedia
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
features={[
{
id: "communal",
title: "General Communal",
description: "Supportive shared environment for camaraderie and recovery connection.",
tag: "Option",
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-hotel-lobby_74190-3799.jpg",
},
id: "communal", title: "General Communal", description: "Supportive shared environment for camaraderie and recovery connection.", tag: "Option", imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-hotel-lobby_74190-3799.jpg"},
{
id: "double",
title: "Double En-Suite",
description: "Semi-private en-suite accommodation for residents.",
tag: "Option",
imageSrc: "http://img.b2bpic.net/free-photo/indoor-design-luxury-resort_23-2150497276.jpg",
},
id: "double", title: "Double En-Suite", description: "Semi-private en-suite accommodation for residents.", tag: "Option", imageSrc: "http://img.b2bpic.net/free-photo/indoor-design-luxury-resort_23-2150497276.jpg"},
{
id: "single",
title: "Single En-Suite",
description: "Private sanctuary for maximum comfort and focus.",
tag: "Option",
imageSrc: "http://img.b2bpic.net/free-photo/room-with-blue-couchs-with-white-cushions_1203-374.jpg",
},
id: "single", title: "Single En-Suite", description: "Private sanctuary for maximum comfort and focus.", tag: "Option", imageSrc: "http://img.b2bpic.net/free-photo/room-with-blue-couchs-with-white-cushions_1203-374.jpg"},
]}
title="Comfortable Living"
description="We offer peaceful, dignified living quarters conducive to recovery."
@@ -98,33 +60,16 @@ export default function LandingPage() {
logoText="Aloe Valley Wellness Manor"
columns={[
{
title: "Navigation",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Programmes",
href: "/programmes",
},
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Programmes", href: "/programmes" },
],
},
{
title: "Support",
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Privacy Policy",
href: "#",
},
title: "Support", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Privacy Policy", href: "#" },
],
},
]}
@@ -134,4 +79,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}