6 Commits

Author SHA1 Message Date
71b9fdfccf Update src/app/page.tsx 2026-03-10 16:45:52 +00:00
58d6715bd6 Merge version_3 into main
Merge version_3 into main
2026-03-10 16:42:15 +00:00
88843fcd71 Update src/app/page.tsx 2026-03-10 16:42:10 +00:00
7a61acae9a Switch to version 1: modified src/app/page.tsx 2026-03-10 16:41:31 +00:00
2ddc4f9bc1 Update src/app/page.tsx 2026-03-10 16:39:24 +00:00
3ce0de8887 Merge version_2 into main
Merge version_2 into main
2026-03-10 16:38:53 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import HeroLogoBlock from '@/components/sections/hero/HeroLogoBlock';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactSplit from '@/components/sections/contact/ContactSplit';
@@ -40,27 +40,25 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="Oriental Massage Miami"
<HeroLogoBlock
title="Oriental Massage Miami"
description="Premium wellness retreat featuring authentic Asian massage therapies and spa treatments in the heart of Miami"
tag="Luxury Wellness"
tagAnimation="slide-up"
logos={[
{
src: "http://img.b2bpic.net/free-photo/beautiful-burning-candles-with-green-leaves-purse-white-table_169016-1505.jpg?_wi=1", alt: "Serene luxury spa massage treatment room with calming ambiance"
}
]}
mediaAnimation="opacity"
buttons={[
{
text: "Book Your Session", href: "#booking"
}
]}
slides={[
{
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-burning-candles-with-green-leaves-purse-white-table_169016-1505.jpg?_wi=1", imageAlt: "Serene luxury spa massage treatment room with calming ambiance"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/wellness-concept-with-woman-massage-salon_23-2147816975.jpg", imageAlt: "Wellness spa massage concept"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/massage-with-four-hands-concept-healthcare-female-beauty-two-masseuses-make-double-massage-girl-woman-spa-salon_1157-44666.jpg", imageAlt: "Professional massage therapy session"
}
]}
autoplayDelay={5000}
showDimOverlay={false}
buttonAnimation="slide-up"
background={{ variant: "glowing-orb" }}
useInvertedBackground={false}
ariaLabel="Oriental Massage Miami - Premium Wellness Spa"
/>
</div>
@@ -163,4 +161,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}