feat: rebrans
This commit is contained in:
+19
-13
@@ -30,7 +30,7 @@ function Header() {
|
||||
<span className="text-white font-bold text-sm">آ</span>
|
||||
</div>
|
||||
<div className="text-xl sm:text-2xl font-bold bg-gradient-to-r from-primary-500 to-primary-600 bg-clip-text text-transparent">
|
||||
آراملند
|
||||
آرام لند
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -39,12 +39,12 @@ function Header() {
|
||||
{navigationItems.map((item) => (
|
||||
<button
|
||||
key={item.id}
|
||||
onClick={() =>{
|
||||
if (item.id === 'blog') {
|
||||
window.open('https://aramland.approagency.ir/blog/', '_blank');
|
||||
} else {
|
||||
handleNavClick(item.id);
|
||||
}
|
||||
onClick={() => {
|
||||
if (item.id === 'blog') {
|
||||
window.open('https://aramland.approagency.ir/blog/', '_blank');
|
||||
} else {
|
||||
handleNavClick(item.id);
|
||||
}
|
||||
}}
|
||||
className="text-gray-600 hover:text-primary-500 font-medium transition-colors duration-200 relative group text-sm lg:text-base"
|
||||
>
|
||||
@@ -56,8 +56,8 @@ function Header() {
|
||||
|
||||
{/* Desktop CTA Button */}
|
||||
<div className="hidden md:block">
|
||||
<button
|
||||
onClick={() => handleNavClick('download')}
|
||||
<button
|
||||
onClick={() => handleNavClick('download')}
|
||||
className="bg-gradient-to-r from-primary-500 to-primary-600 text-white font-medium py-2 px-4 lg:py-2 lg:px-6 rounded-xl hover:shadow-lg transition-all duration-300 transform hover:scale-105 text-sm lg:text-base"
|
||||
>
|
||||
شروع سفر آرامش
|
||||
@@ -84,17 +84,23 @@ function Header() {
|
||||
{navigationItems.map((item) => (
|
||||
<button
|
||||
key={item.id}
|
||||
onClick={() => handleNavClick(item.id)}
|
||||
onClick={() => {
|
||||
if (item.id === 'blog') {
|
||||
window.open('https://aramland.approagency.ir/blog/', '_blank');
|
||||
} else {
|
||||
handleNavClick(item.id);
|
||||
}
|
||||
}}
|
||||
className="block w-full text-right py-3 px-4 text-gray-700 hover:text-primary-500 hover:bg-primary-50 rounded-lg transition-all duration-200 font-medium border-b border-gray-100 last:border-b-0"
|
||||
>
|
||||
{item.name}
|
||||
</button>
|
||||
))}
|
||||
|
||||
|
||||
{/* Mobile CTA Button */}
|
||||
<div className="pt-4 border-t border-gray-200">
|
||||
<button
|
||||
onClick={() => handleNavClick('download')}
|
||||
<button
|
||||
onClick={() => handleNavClick('download')}
|
||||
className="w-full bg-gradient-to-r from-primary-500 to-primary-600 text-white font-medium py-3 px-4 rounded-xl hover:shadow-lg transition-all duration-300 transform hover:scale-105 text-center"
|
||||
>
|
||||
شروع سفر آرامش
|
||||
|
||||
Reference in New Issue
Block a user