From 9b8ed44924c9c76b7baac69e2d16e86089cff685 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 16:01:22 +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 6197013..9c4220b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { DollarSign, LayoutGrid, MapPin, Mobile, Smartphone, TrendingUp, Zap } from 'lucide-react'; +import { DollarSign, LayoutGrid, MapPin, Smartphone, TrendingUp, Zap } from 'lucide-react'; export default function LandingPage() { return ( @@ -48,7 +48,7 @@ export default function LandingPage() { tag="Mobile App Development" tagIcon={Smartphone} tagAnimation="slide-up" - background={{ variant: "circleGradient" }} + background={{ variant: "glowing-orb" }} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ao0PXCGG2QzDPiPxawDLQ0I0Mf/modern-mobile-app-mockups-displaying-thr-1773244794347-76450a3e.png" imageAlt="Mobile app mockups for gym, charter, and restaurant booking apps" imagePosition="right" @@ -102,7 +102,7 @@ export default function LandingPage() { title="Why Your Business Needs a Mobile App" description="Direct bookings, push notifications, faster payments" subdescription="Apps drive retention and brand authority" - icon={Mobile} + icon={Smartphone} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ao0PXCGG2QzDPiPxawDLQ0I0Mf/clean-modern-mobile-app-interface-mockup-1773244793287-947b1cee.png" imageAlt="Mobile app showing benefits like direct bookings, payments, and customer engagement" mediaAnimation="blur-reveal" @@ -192,7 +192,7 @@ export default function LandingPage() { Date: Wed, 11 Mar 2026 16:01:22 +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..935078f 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,37 @@ -"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 { + text?: string; + size?: number; 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 = "WEBILD", size = 48, + className = "", ...props +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1