diff --git a/src/app/page.tsx b/src/app/page.tsx index 0b2341c..0fa91f7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni import BlogCardThree from '@/components/sections/blog/BlogCardThree'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Sparkles, Hand, Cup, Zap, Plus, TrendingUp, Star, Palette, CircleDot, Square, Droplet, Heart, Cookie, Flame, MapPin, Navigation } from 'lucide-react'; +import { Sparkles, Hand, Zap, Plus, TrendingUp, Star, Palette, CircleDot, Square, Droplet, Heart, Cookie, Flame, MapPin, Navigation } from 'lucide-react'; export default function LandingPage() { return ( @@ -42,7 +42,7 @@ export default function LandingPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ + text, + className = '', + fontSize = 24, + fontWeight = 700, + fill = 'currentColor', + textAnchor = 'middle', + dominantBaseline = 'middle', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file