diff --git a/src/app/page.tsx b/src/app/page.tsx index f937bea..b63c9c1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -66,7 +66,7 @@ export default function LandingPage() { { id: "4", value: "Orijinal", description: "Yedek Parçalar" } ]} animationType="slide-up" - gridVariant="four-items-2x2-equal-grid" + gridVariant="uniform-all-items-equal" textboxLayout="default" useInvertedBackground={false} /> @@ -75,13 +75,13 @@ 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, + fontSize = 24, + fontFamily = 'Arial', + fill = 'currentColor', + className = '', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;