diff --git a/app/components/DownloadSection.jsx b/app/components/DownloadSection.jsx index 6c4211a..3cc9211 100644 --- a/app/components/DownloadSection.jsx +++ b/app/components/DownloadSection.jsx @@ -59,7 +59,7 @@ function DownloadSection() { className={`relative flex flex-col items-center justify-center p-8 bg-gradient-to-br ${option.gradient} rounded-3xl hover:shadow-2xl transition-all duration-300 transform hover:-translate-y-2 group ${option.animation} overflow-hidden border ${option.border}`} > {/* Shine effect */} -
+ {/* */} {option.badge && ({option.description}
+{option.description}
))} diff --git a/app/components/Header.jsx b/app/components/Header.jsx index 78312c7..80375d0 100644 --- a/app/components/Header.jsx +++ b/app/components/Header.jsx @@ -1,33 +1,45 @@ "use client"; import { useScroll } from '../hooks/useScroll'; +import { useState } from 'react'; +import { Menu, X } from 'lucide-react'; + function Header() { - const { scrollToSectionWithHeader } = useScroll(); + const { scrollToSectionWithHeader } = useScroll(); + const [isMenuOpen, setIsMenuOpen] = useState(false); + + const navigationItems = [ + { name: 'ویژگیها', id: 'features' }, + { name: 'امکانات', id: 'what-you-can-do' }, + { name: 'چرا ما', id: 'why-aramland' }, + { name: 'دانلود', id: 'download' }, + { name: 'ارتباط با ما', id: 'footer' }, + ]; + + const handleNavClick = (sectionId) => { + scrollToSectionWithHeader(sectionId); + setIsMenuOpen(false); + }; + return ( -