worked on the image and and form and links

This commit is contained in:
2026-03-18 17:55:47 +05:30
parent 37a2959524
commit e09c0033bb
13 changed files with 129 additions and 107 deletions

View File

@@ -461,9 +461,9 @@ const navigationData = {
{ text: "Careers", icon: Briefcase, href: "/company/careers" },
],
resources: [
{
text: "Blogs",
icon: BookOpen,
{
text: "Blogs",
icon: BookOpen,
href: "https://www.wdipl.com/blog",
target: "_blank",
rel: "noopener noreferrer"
@@ -621,7 +621,7 @@ const MegaMenu = ({
timeoutRef,
}: MegaMenuProps) => {
const navigate = useNavigate();
if (!isOpen) return null;
const handleNavigate = (path: string, target?: string) => {
@@ -1030,9 +1030,8 @@ export const Navigation = () => {
{item}
{hasDropdown(item) && (
<ChevronDown
className={`w-4 h-4 transition-transform duration-200 ${
activeMenu === item ? "rotate-180" : ""
}`}
className={`w-4 h-4 transition-transform duration-200 ${activeMenu === item ? "rotate-180" : ""
}`}
/>
)}
</a>
@@ -1045,7 +1044,8 @@ export const Navigation = () => {
onClick={() => handleNavigation("/start-a-project")}
className="hidden lg:flex"
>
Get Started
{/* Get Started */}
Contact Us
</Button>
{/* Mobile Menu Button */}
@@ -1100,7 +1100,7 @@ export const Navigation = () => {
{item}
</a>
))}
{/* Mobile Resources Submenu */}
<div className="pl-4 space-y-2 border-l-2 border-[#E5195E]/30">
{navigationData.resources.map((resource) => (
@@ -1124,7 +1124,8 @@ export const Navigation = () => {
onClick={() => handleNavigation("/start-a-project")}
className="w-full mt-4"
>
Get Started
{/* Get Started */}
Contact Us
</Button>
</div>
</div>