Merge version_1 into main #3

Merged
bender merged 4 commits from version_1 into main 2026-06-10 16:22:50 +00:00
Showing only changes of commit 7a3c2aea00 - Show all commits

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import MediaAbout from '@/components/sections/about/MediaAbout';
import ContactText from '@/components/sections/contact/ContactText';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function LandingPage() {
@@ -26,45 +26,27 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About Ryan",
id: "/about",
},
name: "About Ryan", id: "/about"},
{
name: "Treatments",
id: "/treatments",
},
name: "Treatments", id: "/treatments"},
{
name: "Locations",
id: "/locations",
},
name: "Locations", id: "/locations"},
{
name: "Before & After",
id: "/gallery",
},
name: "Before & After", id: "/gallery"},
{
name: "Financing",
id: "/financing",
},
name: "Financing", id: "/financing"},
{
name: "Blog",
id: "/blog",
},
name: "Blog", id: "/blog"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ga8cvi"
logoAlt="TREAT Medspa Logo"
brandName="TREAT Medspa"
button={{
text: "Book Consultation",
href: "/contact",
}}
text: "Book Consultation", href: "/contact"}}
/>
</div>
@@ -72,22 +54,15 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
text="Visit TREAT Medspa at Our Premium Locations"
buttons={[
{
text: "New York City",
href: "#nyc",
},
text: "New York City", href: "#nyc"},
{
text: "Miami",
href: "#miami",
},
text: "Miami", href: "#miami"},
{
text: "Los Angeles",
href: "#la",
},
text: "Los Angeles", href: "#la"},
]}
/>
</div>
@@ -99,13 +74,9 @@ export default function LandingPage() {
description="Each of our locations offers the same standard of luxury, personalized care, and advanced aesthetic treatments."
buttons={[
{
text: "Get Directions",
href: "#",
},
text: "Get Directions", href: "#"},
{
text: "Book at This Location",
href: "/contact",
},
text: "Book at This Location", href: "/contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/modern-architecture-urban-center_1359-870.jpg"
imageAlt="Interactive map showing Medspa locations"
@@ -114,65 +85,40 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/luxury-modern-apartment-boasts-elegant-furniture-design-generated-by-ai_188544-26999.jpg?_wi=4"
imageAlt="Luxury Medspa Interior"
videoSrc="http://img.b2bpic.net/free-photo/winter-season-lodging-entrance_482257-103218.jpg?_wi=4"
videoSrc="http://img.b2bpic.net/free-photo/winter-season-lodging-entrance_482257-103218.jpg"
videoAriaLabel="Luxury Medspa reception area ambiance"
logoText="TREAT Medspa"
columns={[
{
title: "Explore",
items: [
title: "Explore", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "About Ryan",
href: "/about",
},
label: "About Ryan", href: "/about"},
{
label: "Treatments",
href: "/treatments",
},
label: "Treatments", href: "/treatments"},
{
label: "Locations",
href: "/locations",
},
label: "Locations", href: "/locations"},
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{
label: "Before & After",
href: "/gallery",
},
label: "Before & After", href: "/gallery"},
{
label: "Financing",
href: "/financing",
},
label: "Financing", href: "/financing"},
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}