From e5160735cbf496ebead52249ea0fc2bcea5ab210 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:49:33 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8655ba8..e134b78 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="medium" sizing="medium" - background="aurora" + background="circleGradient" cardStyle="outline" primaryButtonStyle="double-inset" secondaryButtonStyle="radial-glow" @@ -48,7 +48,7 @@ export default function LandingPage() { description="Discover Jenna's collection of beautifully handmade knitted products. Each piece is crafted with care using premium yarns and traditional techniques. From cozy sweaters to elegant scarves, find your perfect handmade treasure." tag="Artisan Crafted" tagIcon={Sparkles} - background={{ variant: "aurora" }} + background={{ variant: "sparkles-gradient" }} buttons={[ { text: "Explore Products", href: "products" }, { text: "Learn the Story", href: "about" } @@ -87,6 +87,7 @@ export default function LandingPage() { imageAlt="Jenna knitting in her studio workspace" useInvertedBackground={false} mediaAnimation="slide-up" + metricsAnimation="slide-up" /> -- 2.49.1 From 0108cb0083846753cefa4627c036a2f30ecbb8ea Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:49:33 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 54 ++++++------------- 1 file changed, 16 insertions(+), 38 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..c7f1fc8 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,29 @@ -"use client"; +import React, { 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 { 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 = ({ className = '', ...props }) => { return ( - {logoText} + Logo ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1