From ff69fc0949a9ecb54a49d8dbb586d1efc8744317 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 23:31:52 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a04897d..872a5b0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -45,7 +45,7 @@ export default function LandingPage() { @@ -166,20 +166,16 @@ export default function LandingPage() { animationType="slide-up" testimonials={[ { - id: "1", name: "Aidan Fox-Bailey", role: "Local Visitor", company: "Gig Harbor", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg", imageAlt: "Aidan Fox-Bailey portrait" + id: "1", name: "Aidan Fox-Bailey", role: "Local Visitor", company: "Gig Harbor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg", imageAlt: "Aidan Fox-Bailey portrait" }, { - id: "2", name: "David Schanhals", role: "Food Enthusiast", company: "Washington", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-16435.jpg", imageAlt: "David Schanhals portrait" + id: "2", name: "David Schanhals", role: "Food Enthusiast", company: "Washington", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-wool-suit_613910-16435.jpg", imageAlt: "David Schanhals portrait" }, { - id: "3", name: "Ava Carlson", role: "Family Diner", company: "Frequent Guest", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/modern-businesswoman_23-2148012909.jpg", imageAlt: "Ava Carlson portrait" + id: "3", name: "Ava Carlson", role: "Family Diner", company: "Frequent Guest", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/modern-businesswoman_23-2148012909.jpg", imageAlt: "Ava Carlson portrait" }, { - id: "4", name: "Joe Roush", role: "Regular Customer", company: "Gig Harbor", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-knitted-hat-sitting-against-yellow-surface_23-2148204634.jpg", imageAlt: "Joe Roush portrait" + id: "4", name: "Joe Roush", role: "Regular Customer", company: "Gig Harbor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-knitted-hat-sitting-against-yellow-surface_23-2148204634.jpg", imageAlt: "Joe Roush portrait" } ]} kpiItems={[ @@ -197,7 +193,7 @@ export default function LandingPage() { description="Order online for takeout, delivery, or dine-in. We prepare fresh burgers made-to-order. Delivery available within Gig Harbor and surrounding areas." tagIcon={ShoppingCart} tagAnimation="slide-up" - background={{ variant: "circleGradient" }} + background={{ variant: "plain" }} useInvertedBackground={false} imageSrc="http://img.b2bpic.net/free-photo/front-view-burger-with-egg-table_23-2148678850.jpg" imageAlt="Delicious gourmet burger ready to order" -- 2.49.1 From 21f0425f8012a3b2d8dd0bd65acc8f33f7b8aab7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 23:31:52 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 60 +++++++------------ 1 file changed, 21 insertions(+), 39 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..8709829 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,33 @@ -"use client"; +import { SVGProps } from 'react'; -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; - -interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; +interface SvgTextLogoProps extends SVGProps { + text: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export default function SvgTextLogo({ + text, + className = '', + ...props +}: SvgTextLogoProps) { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +} -- 2.49.1