diff --git a/components/Footer.tsx b/components/Footer.tsx
index 6ae29f2d..66092f29 100644
--- a/components/Footer.tsx
+++ b/components/Footer.tsx
@@ -44,19 +44,19 @@ export default function Footer() {
{t('legal')}
- - {t('legalNotice')}
- - {t('privacyPolicy')}
- - {t('terms')}
+ - {t('legalNotice')}
+ - {t('privacyPolicy')}
+ - {t('terms')}
{t('company')}
- - {navT('team')}
- - {navT('products')}
- - {navT('blog')}
- - {navT('contact')}
+ - {navT('team')}
+ - {navT('products')}
+ - {navT('blog')}
+ - {navT('contact')}
diff --git a/components/Header.tsx b/components/Header.tsx
index e8dc30e0..a6faebb8 100644
--- a/components/Header.tsx
+++ b/components/Header.tsx
@@ -123,11 +123,11 @@ export default function Header() {
href={`/${currentLocale}${item.href === '/' ? '' : item.href}`}
className={cn(
textColorClass,
- "hover:text-accent font-bold transition-all text-base md:text-lg tracking-tight relative group inline-block"
+ "hover:text-accent font-bold transition-all duration-500 text-base md:text-lg tracking-tight relative group inline-block hover:-translate-y-0.5"
)}
>
{item.label}
-
+
))}
diff --git a/components/home/Hero.tsx b/components/home/Hero.tsx
index 16396524..d0ab1eed 100644
--- a/components/home/Hero.tsx
+++ b/components/home/Hero.tsx
@@ -52,11 +52,11 @@ export default function Hero() {
-
diff --git a/components/ui/Button.tsx b/components/ui/Button.tsx
index 18b342a7..7fc06fcf 100644
--- a/components/ui/Button.tsx
+++ b/components/ui/Button.tsx
@@ -11,16 +11,16 @@ export interface ButtonProps extends React.ButtonHTMLAttributes
+
+ {props.children}
+
+
+ >
+ );
+
if (href) {
return (
- {props.children}
+ {content}
);
}
return (
-
+
+ {content}
+
);
}