Skip to content

Commit 89e3dd7

Browse files
committed
update navigations and add border
1 parent 0d4eb73 commit 89e3dd7

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

app/[locale]/(user)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function Layout({ children }: UserLayoutProps) {
2121

2222
return (
2323
<div className="flex h-full grow flex-col">
24-
<header className="relative z-2 p-6 lg:px-10 lg:py-6 bg-primaryBlue">
24+
<header className="relative z-2 bg-primaryBlue ">
2525
<MainNav hideSearch={hideSearch} />
2626
</header>
2727
<>{children}</>

app/[locale]/dashboard/components/main-nav.tsx

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -67,23 +67,16 @@ export function MainNav({ hideSearch = false }) {
6767
title: 'Sectors',
6868
href: '/sectors',
6969
},
70+
7071
{
71-
title: 'Use Cases',
72-
href: '#',
73-
},
74-
{
75-
title: 'Publishers',
76-
href: '#',
77-
},
78-
{
79-
title: 'Tools',
72+
title: 'About us',
8073
href: '#',
8174
},
8275
];
8376

8477
return (
85-
<nav>
86-
<div className="flex items-center justify-between gap-4">
78+
<nav className='pt-6 px-6 lg:px-10 lg:pt-6 '>
79+
<div className="flex items-center justify-between gap-4 pb-6 border-b-1 border-surfaceDefault border-solid">
8780
<div className="flex items-center gap-1">
8881
<div className="lg:hidden">
8982
<Sidebar

0 commit comments

Comments
 (0)