Skip to content

Commit d0440ba

Browse files
committed
fix: colors
1 parent 96ed776 commit d0440ba

4 files changed

Lines changed: 3 additions & 7 deletions

File tree

src/components/HeaderFooter/HeaderDesktop.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export function HeaderDesktop({ isMenuOpen, logoLight, logoDark, menuItems }: He
6363
> */}
6464
<Container className="px-0">
6565
<nav className="backdrop-blur-sm text-white p-0 rounded-b-xl">
66-
<div className="flex items-center justify-between bg-background px-9 py-0 dark:bg-[#212124] [&_.logo-light]:[filter:brightness(0)_invert(1)] rounded-b-xl border border-t-0 border-accent">
66+
<div className="flex items-center justify-between bg-background px-9 py-0 dark:bg-[#212124] rounded-b-xl border border-t-0 border-accent">
6767
<BrandLogo logoDark={logoDark} logoLight={logoLight} />
6868
{/* <ul className="flex items-center justify-center flex-grow space-x-8 text-md">
6969
<li>
@@ -96,7 +96,7 @@ export function HeaderDesktop({ isMenuOpen, logoLight, logoDark, menuItems }: He
9696
</PopoverGroup>
9797
<div className="flex items-center space-x-4">
9898
<button
99-
className="fixed right-4 z-[60] p-2 rounded-full bg-accent/30 backdrop-blur-sm transition-all duration-300 hover:bg-white/20 text-primary hover:text-accent"
99+
className="fixed right-4 z-[60] p-2 rounded-full bg-accent/30 backdrop-blur-sm transition-all duration-300 hover:bg-white/20 text-primary dark:text-white hover:text-accent hover:scale-125"
100100
onClick={toggleTheme}
101101
>
102102
<div className="relative">

src/components/HeaderFooter/VideoHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export function VideoHeader({ logoVideo, logoLight, logoDark, menuItems } : { lo
7777
</button>
7878
)}
7979
<div className="fixed top-0 left-0 right-0 z-50" >
80-
<HeaderDesktop isMenuOpen={isScrolled} logoLight={logoLight} logoDark={logoDark} />
80+
<HeaderDesktop isMenuOpen={isScrolled} logoLight={logoLight} logoDark={logoDark} menuItems={menuItems}/>
8181
<HeaderMobile isMenuOpen={true} logoLight={logoLight} logoDark={logoDark} menuItems={menuItems}/>
8282

8383
</div>

src/components/Pages/LandingPage.stories.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ export const Default: PageStory = {
8383
</div>
8484
),
8585
header: {
86-
title: 'Your Company',
87-
logo: 'cortex-reply.png',
8886
menuItems: [
8987
{
9088
name: 'Documentation',

src/components/Pages/Website.stories.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,6 @@ export const Default: PageStory = {
9595
</div>
9696
),
9797
header: {
98-
title: 'Your Company',
99-
logo: 'cortex-reply.png',
10098
menuItems: [
10199
{
102100
name: 'Documentation',

0 commit comments

Comments
 (0)