diff --git a/src/app/page.tsx b/src/app/page.tsx index 1c1dc7c..af0090f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -64,7 +64,7 @@ export default function LandingPage() { description="Since opening our doors, The Great Indian Kitchen has been dedicated to bringing authentic Indian flavors to your table. Our master chefs combine traditional cooking techniques with the finest spices imported from India, ensuring every dish tells a story of heritage and passion." tag="Our Story" tagIcon={Heart} - tagAnimation="fade-in" + tagAnimation="slide-up" buttons={[ { text: "Learn More", href: "#" } ]} @@ -105,10 +105,10 @@ 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 = 'Logo', + className = '', + fontSize = 48, + letterSpacing = 2, + fill = '#000000', + dominantBaseline = 'middle', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file