diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a76c220..200c4d3 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -20,8 +20,7 @@ export default function AboutPage() { const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About", href: "/about" }, @@ -30,8 +29,7 @@ export default function AboutPage() { ], }, { - title: "Nous Contacter", - items: [ + title: "Nous Contacter", items: [ { label: "Téléphone: 0636 27 38 89", href: "tel:0636273889" }, { label: "Email: contact@badrsmile.dz", href: "mailto:contact@badrsmile.dz" }, { label: "Localisation: Wilaya Center", href: "#" }, @@ -39,8 +37,7 @@ export default function AboutPage() { ], }, { - title: "Suivez-Nous", - items: [ + title: "Suivez-Nous", items: [ { label: "Instagram", href: "https://instagram.com/badrsmilecenter" }, { label: "Facebook", href: "https://facebook.com/badrsmilecenter" }, { label: "Politique de Confidentialité", href: "#" }, @@ -75,14 +72,10 @@ export default function AboutPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + fontSize = 24, + fill = 'currentColor', + className = '', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;