delete logs and fix hydration error

This commit is contained in:
YasinOnm08 2024-10-11 10:46:05 +02:00
parent 4ed2756b9a
commit 891dabcabf
10 changed files with 37 additions and 70 deletions

View file

@ -91,7 +91,7 @@ const LandingPage: React.FC = () => {
}, [primaryColor, secondaryColor, accentColor, basicBackgroundColor, basicTextColor]); // Apply themes whenever color states change
return (
<>
<div>
{/* Header component with props for toggling and view change */}
<Header
toggleDivs={toggleDivs}
@ -118,7 +118,7 @@ const LandingPage: React.FC = () => {
{view === 'Credits' && <Credits />}
</div>
</div>
</>
</div>
);
};