Skip to content

Commit

Permalink
dfsa
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajrekwar committed Jul 31, 2024
1 parent ea3fee2 commit 5025767
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/components/floatingNavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ export function FloatingNavDemo() {
{
name: "Home",
link: "/",
icon: <IconHome className="h-4 w-4 text-neutral-500 dark:text-white" />,
icon: <IconHome className="h-4 w-4 text-four" />,
},
{
name: "About",
link: "/about",
icon: <IconUser className="h-4 w-4 text-neutral-500 dark:text-white" />,
icon: <IconUser className="h-4 w-4 text-four" />,
},
{
name: "Contact",
link: "/contact",
icon: (
<IconMessage className="h-4 w-4 text-neutral-500 dark:text-white" />
<IconMessage className="h-4 w-4 text-four" />
),
},
];
Expand Down
4 changes: 2 additions & 2 deletions app/components/ui/floating-navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const FloatingNav = ({
duration: 0.2,
}}
className={cn(
"flex max-w-fit fixed top-10 inset-x-0 mx-auto border border-transparent dark:border-white/[0.2] rounded-full dark:bg-black bg-white shadow-[0px_2px_3px_-1px_rgba(0,0,0,0.1),0px_1px_0px_0px_rgba(25,28,33,0.02),0px_0px_0px_1px_rgba(25,28,33,0.08)] z-[5000] pr-2 pl-8 py-2 items-center justify-center space-x-4",
"flex max-w-fit fixed top-10 inset-x-0 mx-auto border border-four dark:border-white/[0.2] rounded-full dark:bg-black bg-primary shadow-[0px_2px_3px_-1px_rgba(0,0,0,0.1),0px_1px_0px_0px_rgba(25,28,33,0.02),0px_0px_0px_1px_rgba(25,28,33,0.08)] z-[5000] pr-2 pl-8 py-2 items-center justify-center space-x-4",
className,
)}
>
Expand All @@ -72,7 +72,7 @@ export const FloatingNav = ({
<span className="hidden sm:block text-sm">{navItem.name}</span>
</Link>
))}
<button className="border text-sm font-medium relative border-neutral-200 dark:border-white/[0.2] text-black dark:text-white px-4 py-2 rounded-full">
<button className="border text-sm font-medium relative border-four dark:border-white/[0.2] text-four dark:text-white px-4 py-2 rounded-full">
<span>
<Link href="/blog">blog</Link>
</span>
Expand Down

0 comments on commit 5025767

Please sign in to comment.