From 00c174c9c9859febc481d2396f08f1c526da7bfd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 14:02:59 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 120 ++++++++++------------------------------------- 1 file changed, 26 insertions(+), 94 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1cf7f9f..e8a8fdf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Sparkles } from "lucide-react"; +import { Sparkles, Utensils, Award, Users, ThumbsUp, Pizza } from "lucide-react"; export default function ItalianRestaurantPage() { return ( @@ -38,8 +38,7 @@ export default function ItalianRestaurantPage() { { name: "Reviews", id: "testimonials" } ]} button={{ - text: "Book a Table", - href: "contact" + text: "Book a Table", href: "contact" }} /> @@ -76,25 +75,13 @@ export default function ItalianRestaurantPage() { description="Discover our signature dishes, carefully crafted using authentic Italian recipes and premium ingredients." products={[ { - id: "1", - name: "Tagliatelle al Ragù", - price: "$28", - imageSrc: "https://img.b2bpic.net/free-photo/italian-spaghetti-tomato-sauce-with-parmesan-inside-blue-plate-top-view_114579-1556.jpg", - imageAlt: "Tagliatelle al Ragù with meat sauce" + id: "1", name: "Tagliatelle al Ragù", price: "$28", imageSrc: "https://img.b2bpic.net/free-photo/italian-spaghetti-tomato-sauce-with-parmesan-inside-blue-plate-top-view_114579-1556.jpg", imageAlt: "Tagliatelle al Ragù with meat sauce" }, { - id: "2", - name: "Risotto ai Funghi", - price: "$26", - imageSrc: "https://img.b2bpic.net/free-photo/pasta-tomato-sauce-with-chopped-parmesan-tomato-basilic_114579-919.jpg", - imageAlt: "Creamy mushroom risotto" + id: "2", name: "Risotto ai Funghi", price: "$26", imageSrc: "https://img.b2bpic.net/free-photo/pasta-tomato-sauce-with-chopped-parmesan-tomato-basilic_114579-919.jpg", imageAlt: "Creamy mushroom risotto" }, { - id: "3", - name: "Tiramisu Tradizionale", - price: "$12", - imageSrc: "https://img.b2bpic.net/free-photo/top-view-chicken-spaghetti-with-bell-peppers-parsley_140725-312.jpg", - imageAlt: "Classic tiramisu dessert" + id: "3", name: "Tiramisu Tradizionale", price: "$12", imageSrc: "https://img.b2bpic.net/free-photo/top-view-chicken-spaghetti-with-bell-peppers-parsley_140725-312.jpg", imageAlt: "Classic tiramisu dessert" } ]} gridVariant="three-columns-all-equal-width" @@ -106,19 +93,11 @@ export default function ItalianRestaurantPage() {
); -} +} \ No newline at end of file -- 2.49.1 From 3c67716e26ed892562cb6bc3bb32553c439a32d3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 14:02:59 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index fbd84bc..8431b50 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f5f5; + --background: #fbf8f3; --card: #ffffff; - --foreground: #1c1c1c; - --primary-cta: #1c1c1c; + --foreground: #2b180a; + --primary-cta: #c13030; --primary-cta-text: #f5f5f5; - --secondary-cta: #ffffff; + --secondary-cta: #f1e5d1; --secondary-cta-text: #1c1c1c; - --accent: #e63946; - --background-accent: #e8bea8; + --accent: #e34400; + --background-accent: #f9f1e4; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1