From 3bcbb0b7ad258eb22b2e045201f943943bf9f089 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:20:18 +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 33d4ea4..630e3f0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="smallMedium" sizing="largeSizeMediumTitles" - background="noise" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="gradient" secondaryButtonStyle="glass" @@ -44,7 +44,7 @@ export default function LandingPage() { tag="Premium Beauty Services" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "noise" }} + background={{ variant: "plain" }} imageSrc="http://img.b2bpic.net/free-photo/professional-stylist-doing-haircut-salon_23-2147769831.jpg" imageAlt="Professional hair styling service" buttons={[ @@ -67,7 +67,7 @@ export default function LandingPage() { { id: "2", value: "150+", description: "Happy Customers" }, { id: "3", value: "10+", description: "Years Experience" } ]} - gridVariant="three-columns-all-equal-width" + gridVariant="uniform-all-items-equal" animationType="slide-up" textboxLayout="default" useInvertedBackground={false} @@ -166,7 +166,7 @@ export default function LandingPage() { tagAnimation="slide-up" title="Get Beautiful Today" description="Book your beauty appointment now. Fill out the form or call us directly on WhatsApp for instant booking." - background={{ variant: "noise" }} + background={{ variant: "plain" }} useInvertedBackground={false} imageSrc="http://img.b2bpic.net/free-photo/make-up-artist-applying-lipstick-woman_23-2148332511.jpg" imageAlt="Professional makeup service" -- 2.49.1 From 122f70faeebb33b75dc7f7f95a06915e44e04c21 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:20:18 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 53 ++++++------------- 1 file changed, 16 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..ef0f6e2 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,30 @@ -"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; } -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 = '' }) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1