6 Commits

Author SHA1 Message Date
87dba3e5e8 Update src/app/page.tsx 2026-01-06 15:56:54 +00:00
f7e93fdba4 Update src/app/globals.css 2026-01-06 13:15:37 +00:00
4b90f5bcb6 Update src/app/globals.css 2026-01-06 12:53:13 +00:00
16c7ce153f Update src/app/page.tsx 2026-01-05 08:01:38 +00:00
04d0ba0b40 Update src/app/page.tsx 2026-01-05 07:59:23 +00:00
388afc7a09 Update src/app/globals.css 2026-01-05 07:59:22 +00:00
2 changed files with 14 additions and 12 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #fff8f5;;
--card: #fff0eb;;
--foreground: #3d2c29;;
--primary-cta: #e8a090;;
--background: #f8fcff;;
--card: #ffffff;;
--foreground: #00101f;;
--primary-cta: #409fff;;
--secondary-cta: #ffffff;;
--accent: #f5d5cc;;
--background-accent: #f0c4b8;;
--accent: #c7e2fc;;
--background-accent: #9bcfff;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -10,7 +10,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Facebook, Instagram, Twitter } from "lucide-react";
import { Facebook, Instagram, Twitter, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -203,15 +203,17 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing">
<PricingCardNine
title="Room Rates"
description="Transparent pricing for all room types. Rates vary by season and availability."
title="Exclusive Room Packages"
description="Discover our premium room selection with special featured rates. Book the Executive Suite for the ultimate luxury experience."
textboxLayout="default"
useInvertedBackground="noInvert"
animationType="slide-up"
tag="Most Popular"
tagIcon={Star}
plans={[
{
id: "standard",
title: "Standard Room",
title: "Basic Room",
price: "$120",
period: "/night",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766837895688-zmwuys3h.jpg",
@@ -258,7 +260,7 @@ export default function LandingPage() {
"Personal concierge",
"Complimentary dining"
],
button: { text: "Book Now", href: "booking" }
button: { text: "Book Premium Suite", href: "booking" }
}
]}
/>