diff --git a/src/app/page.tsx b/src/app/page.tsx index 10a5907..536b6b3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCa import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Award, Heart, HelpCircle, Rocket, Shield, Sparkles, Trending, Zap } from "lucide-react"; +import { Award, Heart, HelpCircle, Rocket, Shield, Sparkles, TrendingUp, Zap } from "lucide-react"; export default function LandingPage() { return ( @@ -21,7 +21,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="small" sizing="largeSizeMediumTitles" - background="circleGradient" + background="none" cardStyle="glass-depth" primaryButtonStyle="flat" secondaryButtonStyle="layered" @@ -45,7 +45,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 = '' }) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;