TechnoSamurai02's picture
Completely remade the frontend to look more formal, professional, and aesthetic. Website is compatible with several screen sizes. Both light and dark modes available and switching between them is made easier. Changed text to Times New Roman to improve professionalism. Overall, drastically improved the frontend.
8ea4a8b
Raw
History Blame Contribute Delete
278 Bytes
import ThemeToggle from "./ThemeToggle";
export default function Header() {
return (
<header className="site-header">
<a className="wordmark" href="#top" aria-label="TruthShield AI home">
TruthShield AI
</a>
<ThemeToggle />
</header>
);
}