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() { { + 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;