chore: cleanup
This commit is contained in:
@@ -54,8 +54,8 @@ export default function Hero() {
|
|||||||
animate={{ opacity: 1, y: 0 }}
|
animate={{ opacity: 1, y: 0 }}
|
||||||
transition={{ duration: 0.8, delay: 0.6 }}
|
transition={{ duration: 0.8, delay: 0.6 }}
|
||||||
>
|
>
|
||||||
A curated collection of creative and utility tools for developers and creators
|
A curated collection of creative and utility tools for developers and creators.
|
||||||
Simple, powerful, and always at your fingertips
|
Simple, powerful, and always at your fingertips.
|
||||||
</motion.p>
|
</motion.p>
|
||||||
|
|
||||||
{/* CTA Buttons */}
|
{/* CTA Buttons */}
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ export function AppHeader() {
|
|||||||
<nav className="flex items-center text-sm font-medium">
|
<nav className="flex items-center text-sm font-medium">
|
||||||
<Link href="/" className="flex items-center gap-2">
|
<Link href="/" className="flex items-center gap-2">
|
||||||
<Logo size={20} className="lg:hidden" />
|
<Logo size={20} className="lg:hidden" />
|
||||||
<span className="font-medium transition-colors text-muted-foreground">
|
<span className="font-medium transition-colors text-foreground/80 hover:text-foreground">
|
||||||
Kit
|
Kit
|
||||||
</span>
|
</span>
|
||||||
</Link>
|
</Link>
|
||||||
@@ -36,7 +36,7 @@ export function AppHeader() {
|
|||||||
<Link
|
<Link
|
||||||
href={href}
|
href={href}
|
||||||
className={cn(
|
className={cn(
|
||||||
"capitalize transition-colors text-muted-foreground",
|
"capitalize transition-colors text-foreground/80 hover:text-foreground",
|
||||||
isLast ? "font-semibold" : "font-medium"
|
isLast ? "font-semibold" : "font-medium"
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ export function AppSidebar() {
|
|||||||
"flex items-center px-3 py-2 rounded-lg text-sm font-medium transition-all duration-300 relative group/item",
|
"flex items-center px-3 py-2 rounded-lg text-sm font-medium transition-all duration-300 relative group/item",
|
||||||
isActive
|
isActive
|
||||||
? "bg-primary/10 text-primary ring-1 ring-primary/20"
|
? "bg-primary/10 text-primary ring-1 ring-primary/20"
|
||||||
: "text-muted-foreground hover:bg-accent/50 hover:text-foreground",
|
: "text-foreground/80 hover:bg-accent/50 hover:text-foreground",
|
||||||
isCollapsed ? "justify-center" : "justify-between"
|
isCollapsed ? "justify-center" : "justify-between"
|
||||||
)}
|
)}
|
||||||
title={isCollapsed ? item.title : undefined}
|
title={isCollapsed ? item.title : undefined}
|
||||||
@@ -130,7 +130,7 @@ export function AppSidebar() {
|
|||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<span className={cn(
|
<span className={cn(
|
||||||
"transition-colors duration-300 shrink-0",
|
"transition-colors duration-300 shrink-0",
|
||||||
isActive ? "text-primary" : "text-muted-foreground group-hover/item:text-foreground"
|
isActive ? "text-primary" : "text-foreground/80 group-hover/item:text-foreground"
|
||||||
)}>
|
)}>
|
||||||
{React.isValidElement(item.icon) ? item.icon : null}
|
{React.isValidElement(item.icon) ? item.icon : null}
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user