From 7612bf1c6ca41c397791967dfdb49286b82e3350 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 18:36:33 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 276 ++++++++--------------------------------------- 1 file changed, 47 insertions(+), 229 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4243c33..3f0f334 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="mediumLargeSizeMediumTitles" - background="floatingGradient" + background="noiseDiagonalGradient" cardStyle="glass-depth" primaryButtonStyle="radial-glow" secondaryButtonStyle="glass" @@ -29,75 +29,30 @@ export default function LandingPage() {
@@ -105,82 +60,25 @@ export default function LandingPage() {
@@ -189,127 +87,47 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split-description" gridVariant="three-columns-all-equal-width" - useInvertedBackground={false} + useInvertedBackground={true} + title="Our Signature Creations" + description="Carefully curated sandwiches, designed to perfection." products={[ - { - id: "p1", - name: "Master Steak", - price: "750 RSD", - variant: "Prime Beef", - imageSrc: "http://img.b2bpic.net/free-photo/layered-sandwich-with-puff-pastry-served-with-french-fries-sauce_140725-5857.jpg?_wi=3", - }, - { - id: "p2", - name: "Pesto Chicken", - price: "650 RSD", - variant: "Premium Poultry", - imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-ham-fresh-vegetables_2829-14214.jpg?_wi=3", - }, - { - id: "p3", - name: "Veggie Delight", - price: "550 RSD", - variant: "Plant Based", - imageSrc: "http://img.b2bpic.net/free-photo/vegetarian-sandwich-with-salad-tomatoes-wooden-table-surface_613910-7441.jpg?_wi=3", - }, - { - id: "p4", - name: "Classic Club", - price: "600 RSD", - variant: "Traditional", - imageSrc: "http://img.b2bpic.net/free-photo/double-decker-grilled-sandwich_23-2151950551.jpg?_wi=3", - }, - { - id: "p5", - name: "Spicy Master", - price: "700 RSD", - variant: "Hot & Spicy", - imageSrc: "http://img.b2bpic.net/free-photo/sushi-cafe-sushi-chef-cutting-fish-making-sushi_259150-58561.jpg?_wi=3", - }, - { - id: "p6", - name: "Prosciutto Melt", - price: "850 RSD", - variant: "Gourmet", - imageSrc: "http://img.b2bpic.net/free-photo/young-bearded-gardener-man-wearing-jumpsuit-hat-holding-halves-green-hot-chili-pepper-biting-it-standing-blue-wall_141793-96655.jpg", - }, + { id: "p1", name: "Master Steak", price: "750 RSD", variant: "Prime Beef", imageSrc: "http://img.b2bpic.net/free-photo/layered-sandwich-with-puff-pastry-served-with-french-fries-sauce_140725-5857.jpg?_wi=3" }, + { id: "p2", name: "Truffle Chicken", price: "650 RSD", variant: "Premium Poultry", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-ham-fresh-vegetables_2829-14214.jpg?_wi=3" }, + { id: "p3", name: "The Prosciutto", price: "850 RSD", variant: "Aged Deli", imageSrc: "http://img.b2bpic.net/free-photo/double-decker-grilled-sandwich_23-2151950551.jpg?_wi=3" } ]} - title="Signature Masterpieces" - description="Irresistible flavors, made fresh to order." />
-- 2.49.1 From 9d9ab04b5e458099f8293a6f50599fa5bf3938f3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 18:36:33 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 2d2c4f2..f25b202 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -12,13 +12,13 @@ --background: #0a0a0a; --card: #1a1a1a; - --foreground: #ffffffe6; + --foreground: #f5f5f5; --primary-cta: #FFD700; --primary-cta-text: #0a0a0a; --secondary-cta: #1a1a1a; --secondary-cta-text: #ffffffe6; - --accent: #737373; - --background-accent: #737373; + --accent: #b8860b; + --background-accent: #1a1a1a; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1