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