diff --git a/src/app/globals.css b/src/app/globals.css index 7e4d225..6e65a6c 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #fafafa; - --card: #f4f4f5; - --foreground: #27272a; - --primary-cta: #3f3f46; + --background: #fafffb; + --card: #f7fffa; + --foreground: #001a0a; + --primary-cta: #0a7039; --secondary-cta: #ffffff; - --accent: #facc15; - --background-accent: #eab308; + --accent: #a8d9be; + --background-accent: #6bbf8e; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6dfe964..7f23577 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1276,4 +1276,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 714f27f..498bbde 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCa import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import { Award, Calendar, Heart, Sparkles, Star, Linkedin } from "lucide-react"; +import { Award, Calendar, Heart, Sparkles, Star } from "lucide-react"; export default function LandingPage() { return ( @@ -107,6 +107,7 @@ export default function LandingPage() { imageAlt="Warm and inviting Trattoria dining room" imagePosition="right" useInvertedBackground="noInvert" + rating={5} /> @@ -143,6 +144,16 @@ export default function LandingPage() { useInvertedBackground="noInvert" tag="Dining Excellence" tagIcon={Award} + mediaItems={[ + { + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766760339172-wtq2r8qq.jpg", + imageAlt: "Quality ingredients selection" + }, + { + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766416780858-eeoell34.jpg", + imageAlt: "Elegant Trattoria ambiance" + } + ]} /> @@ -300,4 +311,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}