From 307e3c2bccd4f7511efb594749eef2e89124df0c Mon Sep 17 00:00:00 2001 From: mulika-local Date: Sat, 27 Dec 2025 11:26:13 +0000 Subject: [PATCH 1/2] Update src/app/globals.css --- src/app/globals.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 72f03c6..b315be0 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #000000;; - --card: #1b1b1b;; - --foreground: #ffffff;; - --primary-cta: #ff0000;; - --secondary-cta: #151515;; - --accent: #303030;; - --background-accent: #303030;; + --background: #fffef5; + --card: #fffbeb; + --foreground: #121200e6; + --primary-cta: #ffcf40; + --secondary-cta: #ffffff; + --accent: #e2e2e2; + --background-accent: #fef3c7; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); @@ -495,7 +495,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-jetbrains-mono), sans-serif; + font-family: var(--font-inter-tight), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-jetbrains-mono), sans-serif; + font-family: var(--font-inter-tight), sans-serif; } \ No newline at end of file -- 2.49.1 From d67c71f092b9fc7e74ba5445e8b39778ae27be7b Mon Sep 17 00:00:00 2001 From: mulika-local Date: Sat, 27 Dec 2025 11:26:14 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5586ce3..1a65d56 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import FeatureCardFourteen from '@/components/sections/feature/FeatureCardFourte import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterSocial from '@/components/sections/footer/FooterSocial'; -import { Heart, Star, Calendar, Instagram, Facebook, Linkedin } from 'lucide-react'; +import { Heart, Calendar, Instagram, Facebook, Linkedin } from 'lucide-react'; export default function LandingPage() { return ( @@ -68,7 +68,6 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground="noInvert" tag="Menu" - tagIcon={Star} features={[ { id: "1", @@ -111,6 +110,7 @@ export default function LandingPage() { handle: "@margaretchen", testimonial: "Viva has become our favorite restaurant. The food is exceptional, the service is impeccable, and the atmosphere is simply perfect. We celebrate every special occasion here.", rating: 5, + starColor: "#ffff00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414401529-6db20epg.jpg", imageAlt: "Margaret Chen" }, @@ -120,6 +120,7 @@ export default function LandingPage() { handle: "@jameswilson", testimonial: "Outstanding culinary experience. The chef's attention to detail is remarkable, and every course was a masterpiece.", rating: 5, + starColor: "#ffff00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766492697041-9adqfrju.jpg", imageAlt: "James Wilson" }, @@ -129,6 +130,7 @@ export default function LandingPage() { handle: "@sofiar", testimonial: "The finest dining experience in the city. Worth every penny for the quality and sophistication.", rating: 5, + starColor: "#ffff00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502911819-f5rnce5q.jpg", imageAlt: "Sofia Rodriguez" }, @@ -138,6 +140,7 @@ export default function LandingPage() { handle: "@davidkim", testimonial: "Brought my family for a special celebration and they loved every moment. Highly recommended for special occasions.", rating: 5, + starColor: "#ffff00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502912600-84fr3x4z.jpg", imageAlt: "David Kim" }, @@ -147,6 +150,7 @@ export default function LandingPage() { handle: "@emmathompson", testimonial: "A culinary journey I'll never forget. The wine pairing was expertly curated and enhanced every dish.", rating: 5, + starColor: "#ffff00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502913367-8j5yog7q.jpg", imageAlt: "Emma Thompson" }, @@ -156,6 +160,7 @@ export default function LandingPage() { handle: "@michaelsantos", testimonial: "Professional service, exquisite food, elegant ambiance. Viva sets the standard for fine dining.", rating: 5, + starColor: "#ffff00", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502914201-sdgv9pae.jpg", imageAlt: "Michael Santos" } -- 2.49.1