diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d6a684a..50c4f46 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -80,10 +80,7 @@ export default function AboutPage() { diff --git a/src/app/programs/page.tsx b/src/app/programs/page.tsx index 23b77fc..de89eee 100644 --- a/src/app/programs/page.tsx +++ b/src/app/programs/page.tsx @@ -75,38 +75,17 @@ export default function ProgramsPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ + text, + className = "", textClassName = "", fontSize = 32, + fontWeight = "bold", dominantBaseline = "middle"}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file