From 55de0d3611a7823c52b51f27d435ec5654af5477 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 01:40:42 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 370e871..a7f4bef 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -22,7 +22,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="largeSizeMediumTitles" - background="aurora" + background="circleGradient" cardStyle="gradient-mesh" primaryButtonStyle="flat" secondaryButtonStyle="glass" @@ -47,7 +47,7 @@ export default function LandingPage() { tag="Local Neighborhood Store" tagIcon={MapPin} tagAnimation="slide-up" - background={{ variant: "aurora" }} + background={{ variant: "sparkles-gradient" }} mediaItems={[ { imageSrc: "http://img.b2bpic.net/free-photo/person-shopping-with-face-mask_23-2149565225.jpg", imageAlt: "Fresh groceries and products" From a3fdda33aa941efa9ebc2b38506468cfaa16d89a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 01:40:42 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 60 +++++++------------ 1 file changed, 23 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..84aca39 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,37 @@ -"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"; className?: string; + width?: number; + height?: number; + primaryColor?: string; + secondaryColor?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + className = "", width = 200, + height = 50, + primaryColor = "#1a1a1a", secondaryColor = "#666666"}) => { return ( - {logoText} + Logo Text ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file