diff --git a/src/app/page.tsx b/src/app/page.tsx index daa6a8e..7aee82e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,15 +1,15 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import TextAbout from "@/components/sections/about/TextAbout"; -import ProductCardOne from "@/components/sections/product/ProductCardOne"; -import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; -import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; -import ContactText from "@/components/sections/contact/ContactText"; -import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import TextAbout from '@/components/sections/about/TextAbout'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { Heart, Sparkles, Star } from "lucide-react"; export default function LandingPage() { @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="medium" sizing="mediumLarge" - background="floatingGradient" + background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="shadow" secondaryButtonStyle="layered" @@ -44,7 +44,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 = '', + animationDuration = 2, +}) => { return ( - {logoText} + {text} + ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;