diff --git a/frontend/src/component/Layout/Footer.tsx b/frontend/src/component/Layout/Footer.tsx index 3638083f..42835c2e 100644 --- a/frontend/src/component/Layout/Footer.tsx +++ b/frontend/src/component/Layout/Footer.tsx @@ -1,14 +1,14 @@ import React from 'react'; interface IFooterProps { - title: string; + title?: string; onClick?: () => void; active?: boolean; } export const Footer: React.FC = ({ title, onClick, active }) => { const shadow = active ? 'shadow-float' : 'shadow-basic'; - const fontColor = active ? 'text-gray-900' : 'text-gray-100'; + const fontColor = active ? 'text-gray-900' : 'text-gray-400'; return (