From 88d06385a1fc6d6af756705d27be28404b4d43e2 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 5 Jun 2026 13:57:01 +0000 Subject: [PATCH 1/2] Update src/app/loyalty-program/page.tsx --- src/app/loyalty-program/page.tsx | 276 +++++++++++-------------------- 1 file changed, 101 insertions(+), 175 deletions(-) diff --git a/src/app/loyalty-program/page.tsx b/src/app/loyalty-program/page.tsx index 8875ee6..ed1dc50 100644 --- a/src/app/loyalty-program/page.tsx +++ b/src/app/loyalty-program/page.tsx @@ -2,12 +2,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; +import { Crown, Gift, BadgeCheck, BarChart3, Users, PiggyBank } from "lucide-react"; -export default function LandingPage() { +export default function LoyaltyProgramPage() { return ( - + -
-
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From b9ba78d7490f79b6fb9a55b8521c0c268ad0e867 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 5 Jun 2026 13:57:02 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 215 ++++++++++++----------------------------------- 1 file changed, 53 insertions(+), 162 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4b0a617..ba9453e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,157 +30,92 @@ export default function LandingPage() {
@@ -192,29 +127,19 @@ export default function LandingPage() { metrics={[ { icon: Star, - label: "Rating", - value: "4.6", - }, + label: "Rating", value: "4.6"}, { icon: Truck, - label: "Delivery", - value: "Available", - }, + label: "Delivery", value: "Available"}, { icon: ShoppingBag, - label: "Takeaway", - value: "Available", - }, + label: "Takeaway", value: "Available"}, { icon: Utensils, - label: "Dine-In", - value: "Available", - }, + label: "Dine-In", value: "Available"}, { icon: MapPin, - label: "Location", - value: "2 Charents St, Kapan", - }, + label: "Location", value: "2 Charents St, Kapan"}, ]} metricsAnimation="slide-up" /> @@ -227,24 +152,17 @@ export default function LandingPage() { useInvertedBackground={true} negativeCard={{ items: [ - "No complicated points system", - "No hidden fees or charges", - ], + "No complicated points system", "No hidden fees or charges"], }} positiveCard={{ items: [ - "Every 10th Burger Free", - "Exclusive Birthday Discounts", - "Special SMS Promotions", - ], + "Every 10th Burger Free", "Exclusive Birthday Discounts", "Special SMS Promotions"], }} title="Join Our Loyalty Program" description="Enjoy exclusive rewards and discounts with Tastey Corner. Get your 10th burger free and more!" buttons={[ { - text: "Learn More", - href: "/loyalty-program", - }, + text: "Learn More", href: "/loyalty-program"}, ]} /> @@ -256,25 +174,13 @@ export default function LandingPage() { tag="Our Achievements" metrics={[ { - id: "customers", - value: "50,000+", - description: "Happy Customers Served", - }, + id: "customers", value: "50,000+", description: "Happy Customers Served"}, { - id: "years", - value: "10+", - description: "Years of Culinary Excellence", - }, + id: "years", value: "10+", description: "Years of Culinary Excellence"}, { - id: "freshness", - value: "99%", - description: "Freshness Score", - }, + id: "freshness", value: "99%", description: "Freshness Score"}, { - id: "rating", - value: "5-Star", - description: "Unmatched Taste & Service", - }, + id: "rating", value: "5-Star", description: "Unmatched Taste & Service"}, ]} metricsAnimation="slide-up" /> @@ -284,14 +190,11 @@ export default function LandingPage() { @@ -304,33 +207,21 @@ export default function LandingPage() { { items: [ { - label: "Home", - href: "/", - }, + label: "Home", href: "/"}, { - label: "Menu", - href: "/menu", - }, + label: "Menu", href: "/menu"}, { - label: "Gallery", - href: "/gallery", - }, + label: "Gallery", href: "/gallery"}, ], }, { items: [ { - label: "Reviews", - href: "/reviews", - }, + label: "Reviews", href: "/reviews"}, { - label: "Contact", - href: "/contact", - }, + label: "Contact", href: "/contact"}, { - label: "Loyalty Program", - href: "/loyalty-program", - }, + label: "Loyalty Program", href: "/loyalty-program"}, ], }, ]} -- 2.49.1