Update src/app/spa-services/page.tsx

This commit is contained in:
2026-05-26 09:41:40 +00:00
parent 0ce13361d9
commit 4e1b28864f

View File

@@ -6,7 +6,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Sparkles, Leaf, Heart, Gem, Sun } from "lucide-react";
import { Sparkles, Leaf, Heart, Gem, Sun, Instagram, Facebook, Linkedin } from "lucide-react";
export default function SpaServicesPage() {
return (
@@ -25,13 +25,13 @@ export default function SpaServicesPage() {
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", href: "/" },
{ name: "Rooms & Suites", href: "/rooms-suites" },
{ name: "Spa & Wellness", href: "/spa-services" },
{ name: "Dining", href: "/dining" },
{ name: "Amenities", href: "/amenities" },
{ name: "Gallery", href: "/gallery" },
{ name: "Contact", href: "/#contact" }
{ name: "Home", id: "/" },
{ name: "Rooms & Suites", id: "/rooms-suites" },
{ name: "Spa & Wellness", id: "/spa-services" },
{ name: "Dining", id: "/dining" },
{ name: "Amenities", id: "/amenities" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Terradamari"
button={{ text: "Book Now", href: "/#contact" }}
@@ -81,7 +81,7 @@ export default function SpaServicesPage() {
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" }
]}
/>
</ReactLenis>