Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d53eda03d9 | |||
| 87dba3e5e8 | |||
| 84bd2def2b | |||
| f7e93fdba4 | |||
| 59c5da3d64 | |||
| 4b90f5bcb6 | |||
| b5ae5e7daf | |||
| 16c7ce153f | |||
| 72578ddf2d | |||
| 04d0ba0b40 | |||
| 388afc7a09 |
@@ -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);
|
||||
|
||||
@@ -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" }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user