Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d53eda03d9 | |||
| 87dba3e5e8 | |||
| 84bd2def2b | |||
| f7e93fdba4 | |||
| 59c5da3d64 | |||
| 4b90f5bcb6 | |||
| b5ae5e7daf | |||
| 16c7ce153f | |||
| 72578ddf2d | |||
| 04d0ba0b40 | |||
| 388afc7a09 |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #fff8f5;;
|
--background: #f8fcff;;
|
||||||
--card: #fff0eb;;
|
--card: #ffffff;;
|
||||||
--foreground: #3d2c29;;
|
--foreground: #00101f;;
|
||||||
--primary-cta: #e8a090;;
|
--primary-cta: #409fff;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #f5d5cc;;
|
--accent: #c7e2fc;;
|
||||||
--background-accent: #f0c4b8;;
|
--background-accent: #9bcfff;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
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 PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||||
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -203,15 +203,17 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardNine
|
<PricingCardNine
|
||||||
title="Room Rates"
|
title="Exclusive Room Packages"
|
||||||
description="Transparent pricing for all room types. Rates vary by season and availability."
|
description="Discover our premium room selection with special featured rates. Book the Executive Suite for the ultimate luxury experience."
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
tag="Most Popular"
|
||||||
|
tagIcon={Star}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "standard",
|
id: "standard",
|
||||||
title: "Standard Room",
|
title: "Basic Room",
|
||||||
price: "$120",
|
price: "$120",
|
||||||
period: "/night",
|
period: "/night",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766837895688-zmwuys3h.jpg",
|
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",
|
"Personal concierge",
|
||||||
"Complimentary dining"
|
"Complimentary dining"
|
||||||
],
|
],
|
||||||
button: { text: "Book Now", href: "booking" }
|
button: { text: "Book Premium Suite", href: "booking" }
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user