diff --git a/src/app/page.tsx b/src/app/page.tsx index 899c858..988282e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TeamCardOne from '@/components/sections/team/TeamCardOne'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Award, Scissors, Bottle, Heart, Users, Sparkles, Calendar } from 'lucide-react'; +import { Award, Scissors, Heart, Users, Sparkles, Calendar } from 'lucide-react'; export default function LandingPage() { return ( @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="smallMedium" sizing="mediumSizeLargeTitles" - background="aurora" + background="circleGradient" cardStyle="solid" primaryButtonStyle="double-inset" secondaryButtonStyle="solid" @@ -41,7 +41,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 = '', + fontSize = 24, + fontWeight = 'bold', + fill = 'currentColor', +}) => { + // Calculate approximate SVG dimensions based on text length and font size + const charWidth = fontSize * 0.6; + const width = Math.max(text.length * charWidth, 100); + const height = fontSize * 1.5; + const padding = 10; return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file