From f9f621df51b998fb4f67599936e313c0f0a295d9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:17:46 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 271 ++++++++++------------------------------------- 1 file changed, 57 insertions(+), 214 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e9d7769..7ca3a9f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,58 +32,37 @@ export default function LandingPage() {
@@ -345,70 +213,45 @@ export default function LandingPage() { imageAlt="Night view of Hotel Rajshree International" columns={[ { - title: "Explore", - items: [ + title: "Explore", items: [ { - label: "Home", - href: "/", - }, + label: "Home", href: "/"}, { - label: "Rooms", - href: "#rooms", - }, + label: "Rooms", href: "#rooms"}, { - label: "Amenities", - href: "#amenities", - }, + label: "Amenities", href: "#amenities"}, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About Us", - href: "#about", - }, + label: "About Us", href: "#about"}, { - label: "Reviews", - href: "#reviews", - }, + label: "Reviews", href: "#reviews"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, { - title: "Contact Us", - items: [ + title: "Contact Us", items: [ { - label: "Phone: +91 12345 67890", - href: "tel:+911234567890", + label: "Phone: +91 12345 67890", href: "tel:+911234567890"}, + { + label: "Address: Tajpur Rd, Samastipur" }, { - label: "Address: Tajpur Rd, Samastipur", - href: "#", + label: "Check-in: 12 PM" }, { - label: "Check-in: 12 PM", - href: "#", - }, - { - label: "Check-out: 12 PM", - href: "#", + label: "Check-out: 12 PM" }, ], }, -- 2.49.1 From a9fce2a6d30935dfc84d3c4f99ac225ec2eb2cc2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:17:47 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 0f9f89d..efe6053 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-poppins), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-poppins), sans-serif; + font-family: var(--font-libre-baskerville), serif; } -- 2.49.1 From 9a2c695ae31fa8348902796ceebec9fac48ee39e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:17:47 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 541d7e0..3520c50 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #F8F6F2; - --card: #F8F6F2; - --foreground: #121212; - --primary-cta: #C8A96A; + --background: #F8F4ED; + --card: #EDEBE4; + --foreground: #262626; + --primary-cta: #B8860B; --primary-cta-text: #121212; - --secondary-cta: #1E3D34; + --secondary-cta: #5A6B70; --secondary-cta-text: #F8F6F2; - --accent: #1E3D34; - --background-accent: #1E3D34; + --accent: #D4AF37; + --background-accent: #F2EFDC; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1