8 Commits

Author SHA1 Message Date
885ff319f1 Merge version_5_1779572163920 into main
Merge version_5_1779572163920 into main
2026-05-23 21:36:47 +00:00
kudinDmitriyUp
75a0c249a6 Apply gold color theme to the site 2026-05-23 21:36:25 +00:00
40b37978c5 Merge version_4_1779571159321 into main
Merge version_4_1779571159321 into main
2026-05-23 21:19:59 +00:00
kudinDmitriyUp
e4e8150089 Changed hero title to "Luxury" 2026-05-23 21:19:37 +00:00
82318d725e Merge version_3_1779571042904 into main
Merge version_3_1779571042904 into main
2026-05-23 21:18:10 +00:00
kudinDmitriyUp
8c8e8e98cd Updated hero section to use a carousel with image switching and a progress bar. 2026-05-23 21:17:48 +00:00
7be90c52bb Merge version_2_1779570771756 into main
Merge version_2_1779570771756 into main
2026-05-23 21:13:31 +00:00
kudinDmitriyUp
b6639a75a7 Updated color theme to blue and white. 2026-05-23 21:13:08 +00:00
2 changed files with 18 additions and 14 deletions

View File

@@ -4,16 +4,16 @@
@import "./styles/animations.css";
:root {
/* @colorThemes/lightTheme/grayNavyBlue */
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #f5f5f5;
--primary-cta: #ffdf7d;
--primary-cta-text: #0a0a0a;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #ffffff;
--accent: #b8860b;
--background-accent: #8b6914;
/* @colorThemes/lightTheme/blueWhite */
--background: #fdfaf6;
--card: #fdfaf6;
--foreground: #333333;
--primary-cta: #b8860b; /* DarkGoldenrod */
--primary-cta-text: #ffffff;
--secondary-cta: #e6d8ad; /* Light gold */
--secondary-cta-text: #333333;
--accent: #daa520; /* Goldenrod */
--background-accent: #fff8dc; /* Cornsilk */
/* @layout/border-radius/rounded */
--radius: 0.5rem;

View File

@@ -2,7 +2,7 @@ import AboutTextSplit from '@/components/sections/about/AboutTextSplit';
import ContactCta from '@/components/sections/contact/ContactCta';
import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
import FeaturesComparison from '@/components/sections/features/FeaturesComparison';
import HeroBrand from '@/components/sections/hero/HeroBrand';
import HeroBrandCarousel from '@/components/sections/hero/HeroBrandCarousel';
import ProductMediaCards from '@/components/sections/product/ProductMediaCards';
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
import TestimonialMetricsCards from '@/components/sections/testimonial/TestimonialMetricsCards';
@@ -13,8 +13,8 @@ export default function HomePage() {
<>
<div id="home" data-section="home">
<SectionErrorBoundary name="home">
<HeroBrand
brand="Experience Unrivaled Luxury"
<HeroBrandCarousel
brand="Luxury"
description="Discover a sanctuary of elegance and comfort in the heart of the city, where every stay is a masterpiece of hospitality."
primaryButton={{
text: "Book Your Stay",
@@ -24,7 +24,11 @@ export default function HomePage() {
text: "Explore Rooms",
href: "#rooms",
}}
imageSrc="http://img.b2bpic.net/free-photo/modern-sauna-with-panoramic-windows-wooden-design_169016-70021.jpg"
items={[
{ imageSrc: "http://img.b2bpic.net/free-photo/modern-sauna-with-panoramic-windows-wooden-design_169016-70021.jpg" },
{ imageSrc: "https://img.b2bpic.net/free-photo/luxury-hotel-reception-hall-office-with-decor-shelf_105762-1676.jpg" },
{ imageSrc: "https://img.b2bpic.net/free-photo/luxury-hotel-room-with-modern-design_105762-1677.jpg" },
]}
/>
</SectionErrorBoundary>
</div>