From 58574fd8ba27d8268a2f021f81d2ebfa75555d05 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:04:53 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 34fc392..f5cd9b6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="mediumLargeSizeLargeTitles" - background="grid" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="primary-glow" secondaryButtonStyle="layered" @@ -47,8 +47,8 @@ export default function LandingPage() { tag="Luxury Collection" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "grid" }} - imageSrc="http://img.b2bpic.net/free-photo/white-coupe-sport-car-standing-road-front-view_114579-4005.jpg?_wi=1" + background={{ variant: "glowing-orb" }} + imageSrc="http://img.b2bpic.net/free-photo/white-coupe-sport-car-standing-road-front-view_114579-4005.jpg" imageAlt="Luxury Lamborghini Supercar" imagePosition="right" mediaAnimation="blur-reveal" @@ -61,19 +61,19 @@ export default function LandingPage() { testimonials={[ { name: "Michael Chen", handle: "CEO, Luxury Holdings", testimonial: "The selection and customer service at Prestige Motors is unmatched. My experience was exceptional.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-working-office-couch-putting-long-hours-work-businessperson-professional-environment_482257-32780.jpg?_wi=1" + imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-working-office-couch-putting-long-hours-work-businessperson-professional-environment_482257-32780.jpg" }, { name: "Sofia Rodriguez", handle: "Entrepreneur", testimonial: "Finally found a dealership that understands the luxury market. Absolutely impressed with their expertise.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20364.jpg?_wi=1" + imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20364.jpg" }, { name: "James Morrison", handle: "Investment Manager", testimonial: "Professional, knowledgeable, and dedicated. They found me the perfect vehicle.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=1" + imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg" }, { name: "Alexandra Park", handle: "Fashion Executive", testimonial: "Prestige Motors delivers luxury in every aspect. Highly recommended for discerning buyers.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-red-haired-man_158595-3781.jpg?_wi=1" + imageSrc: "http://img.b2bpic.net/free-photo/portrait-red-haired-man_158595-3781.jpg" } ]} /> @@ -83,7 +83,7 @@ export default function LandingPage() { Date: Tue, 10 Mar 2026 19:04:53 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 57 +++++++------------ 1 file changed, 21 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..6464efb 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,36 @@ -"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; + fillColor?: 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 = '', + fillColor = 'currentColor', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1