Change side nav colors, add Book Demo (#465)
This commit is contained in:
@@ -12,12 +12,9 @@ function SideNav() {
|
||||
<NavLink
|
||||
to="create"
|
||||
className={({ isActive }) => {
|
||||
return cn(
|
||||
"flex items-center px-6 py-4 hover:bg-primary-foreground rounded-2xl",
|
||||
{
|
||||
"bg-primary-foreground": isActive,
|
||||
},
|
||||
);
|
||||
return cn("flex items-center px-6 py-4 hover:bg-muted rounded-2xl", {
|
||||
"bg-muted": isActive,
|
||||
});
|
||||
}}
|
||||
>
|
||||
<PlusCircledIcon className="mr-4 w-6 h-6" />
|
||||
@@ -26,12 +23,9 @@ function SideNav() {
|
||||
<NavLink
|
||||
to="tasks"
|
||||
className={({ isActive }) => {
|
||||
return cn(
|
||||
"flex items-center px-6 py-4 hover:bg-primary-foreground rounded-2xl",
|
||||
{
|
||||
"bg-primary-foreground": isActive,
|
||||
},
|
||||
);
|
||||
return cn("flex items-center px-6 py-4 hover:bg-muted rounded-2xl", {
|
||||
"bg-muted": isActive,
|
||||
});
|
||||
}}
|
||||
>
|
||||
<ListBulletIcon className="mr-4 w-6 h-6" />
|
||||
@@ -40,12 +34,9 @@ function SideNav() {
|
||||
<NavLink
|
||||
to="settings"
|
||||
className={({ isActive }) => {
|
||||
return cn(
|
||||
"flex items-center px-6 py-4 hover:bg-primary-foreground rounded-2xl",
|
||||
{
|
||||
"bg-primary-foreground": isActive,
|
||||
},
|
||||
);
|
||||
return cn("flex items-center px-6 py-4 hover:bg-muted rounded-2xl", {
|
||||
"bg-muted": isActive,
|
||||
});
|
||||
}}
|
||||
>
|
||||
<GearIcon className="mr-4 w-6 h-6" />
|
||||
|
||||
Reference in New Issue
Block a user