From 142702bdd0d3274e34a44341afb9b42197c6d7d9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 08:53:04 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a95a321..73e4351 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="compact" sizing="mediumLargeSizeLargeTitles" - background="noiseDiagonalGradient" + background="circleGradient" cardStyle="inset" primaryButtonStyle="primary-glow" secondaryButtonStyle="glass" @@ -45,7 +45,7 @@ export default function LandingPage() { description="Authentic, homestyle Punjabi cuisine prepared fresh daily. Experience traditional flavors and warm hospitality at Mr. Punjab." tag="Premium Quality" tagIcon={Flame} - background={{ variant: "noiseDiagonalGradient" }} + background={{ variant: "radial-gradient" }} buttons={[ { text: "Call Now", href: "tel:+91-XXXX-XXXX" }, { text: "Order Online", href: "#contact" } @@ -73,7 +73,7 @@ export default function LandingPage() { description="Try our signature Punjabi specialties, lovingly prepared with authentic spices and fresh ingredients." tag="Customer Favorites" tagIcon={Star} - gridVariant="three-columns-all-equal-width" + gridVariant="uniform-all-items-equal" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} @@ -162,7 +162,7 @@ export default function LandingPage() { ]} title="Our Impact" description="Building trust through quality and consistency in every meal we serve." - gridVariant="three-columns-all-equal-width" + gridVariant="uniform-all-items-equal" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} @@ -174,7 +174,7 @@ export default function LandingPage() { tag="Get In Touch" title="Place Your Order Today" description="Call us to order, reserve a table, or ask about our catering services. We're here to serve you authentic Punjabi food with a smile." - background={{ variant: "noiseDiagonalGradient" }} + background={{ variant: "radial-gradient" }} useInvertedBackground={false} imageSrc="http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182545.jpg" imageAlt="Mr. Punjab Restaurant Interior" -- 2.49.1 From 063ef99f5538b71ef00de4535e33f88b64fef09b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 08:53:05 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 50 ++++++------------- 1 file changed, 14 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..297824f 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,29 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; +import React from 'react'; interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; + text: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ text, className = '' }) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1