From 164ff780950fdd2e16e8600981ae3c69168d5f94 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:20:15 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index db53e70..260a97d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Sparkles, Truck, ShoppingCart, Instagram, Facebook, Twitter } from 'lucide-react'; +import { Sparkles, Truck, ShoppingCart, Instagram, Facebook, Twitter, Dress } from 'lucide-react'; export default function LandingPage() { return ( @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="smallMedium" sizing="largeSmall" - background="aurora" + background="circleGradient" cardStyle="outline" primaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow" @@ -47,7 +47,7 @@ export default function LandingPage() { { text: "Shop Collection", href: "#products" }, { text: "Contact Us", href: "#contact" } ]} - background={{ variant: "aurora" }} + background={{ variant: "circleGradient" }} imageSrc="http://img.b2bpic.net/free-photo/sexual-blond-woman-black-dress-chair-luxury-apartments_613910-7014.jpg" imageAlt="luxury fashion model elegant styling" frameStyle="card" @@ -90,7 +90,7 @@ export default function LandingPage() { label: "Premium Quality Fabrics", value: "Hand-picked materials designed for comfort and elegance" }, { - icon: ShoppingCart, + icon: Dress, label: "Unique Designer Styles", value: "Stand out with exclusive fashion collections" }, { -- 2.49.1 From 0b0c3efa0a058c63397f75d2619d6d73e5dc93dc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:20:15 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 75 +++++++++---------- 1 file changed, 34 insertions(+), 41 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..b241850 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,44 @@ -"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; + textClassName?: string; + svgClassName?: 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 = '', + textClassName = '', + svgClassName = '', +}) => { + const svgWidth = text.length * 40; + const svgHeight = 60; return ( - - + - {logoText} - - + + {text} + + + ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1