From 08d87934a13f1f5935451c92bcd842ddac329827 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 12:23: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 13a02a5..fa822ed 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -47,7 +47,7 @@ export default function LandingPage() { tagAnimation="slide-up" title="Elevate Your Code. Own Your Style." description="Premium clothing designed for developers, hackers, and tech enthusiasts who code hard and dress harder. Express your digital identity through our exclusive streetwear collection." - background={{ variant: "glowing-orb" }} + background={{ variant: "grid" }} leftCarouselItems={[ { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-man-wearing-black-hoodie_23-2149359862.jpg", imageAlt: "Hacker hoodie collection" @@ -202,7 +202,7 @@ export default function LandingPage() { tagAnimation="slide-up" title="Join the HACK_WEAR Community" description="Get exclusive drops, early access to new collections, and tech culture updates delivered to your inbox." - background={{ variant: "glowing-orb" }} + background={{ variant: "grid" }} inputPlaceholder="your@email.com" buttonText="Subscribe" termsText="We respect your privacy. Unsubscribe anytime. No spam, just good vibes." -- 2.49.1 From 33ef5f25c9be8035fc23ed485b58bebe84108c7d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 12:23:42 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f77bcc6..361bb1f 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -5,7 +5,7 @@ interface SvgTextLogoProps { className?: string; fontSize?: number; fontWeight?: string; - dominantBaseline?: 'auto' | 'baseline' | 'central' | 'hanging' | 'ideographic' | 'mathematical'; + dominantBaseline?: 'auto' | 'alphabetic' | 'central' | 'hanging' | 'ideographic' | 'mathematical' | 'inherit' | 'text-before-edge' | 'middle' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } const SvgTextLogo: React.FC = ({ -- 2.49.1