@@ -52,7 +48,7 @@ function Card({
category.map((tag) => (
{tag}
@@ -63,11 +59,7 @@ function Card({
{tags.map((tag) => (
-
+
{tag}
))}
diff --git a/src/components/Container/Container.tsx b/src/components/Container/Container.tsx
index 20f62e6..f27cfd7 100644
--- a/src/components/Container/Container.tsx
+++ b/src/components/Container/Container.tsx
@@ -11,7 +11,7 @@ function Container({ as = 'div', className, ...props }: ContainerProps) {
return (
({
return (
{children}
@@ -58,7 +61,10 @@ function Link({
href={href}
target="_blank"
rel="noopener noreferrer"
- className={cn('inline-flex', className)}
+ className={cn(
+ 'inline-flex hover:text-primary-700 dark:hover:text-primary-300',
+ className
+ )}
{...otherProps}
>
{children}