Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-06-02 11:43:44 +00:00
3 changed files with 15 additions and 14 deletions

View File

@@ -9,11 +9,11 @@ import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles, ArrowUpRight, Users, Trophy } from "lucide-react";
const NAV_ITEMS = [
{ name: "Home", href: "/" },
{ name: "Work", href: "/#work" },
{ name: "Services", href: "/services" },
{ name: "About", href: "/about" },
{ name: "Contact", href: "/#contact" }
{ name: "Home", id: "/" },
{ name: "Work", id: "work" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "contact" }
];
const FOOTER_COLUMNS = [
@@ -98,6 +98,7 @@ export default function AboutPage() {
]}
animationType="slide-up"
useInvertedBackground={true}
textboxLayout="default"
tag="Our People"
tagIcon={Users}
/>

View File

@@ -33,11 +33,11 @@ export default function WebAgency2Page() {
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", href: "/" },
{ name: "Portfolio", href: "/portfolio" },
{ name: "Home", id: "/" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", href: "/contact" }
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>

View File

@@ -7,14 +7,14 @@ import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles, Monitor, Rocket, Paintbrush, Check, LayoutDashboard, Code, Megaphone, Palette, Handshake } from "lucide-react";
import { Sparkles, Monitor, Rocket, Paintbrush, Check, LayoutDashboard, Code, Megaphone, Palette, Handshake, Users } from "lucide-react";
const NAV_ITEMS = [
{ name: "Home", href: "/" },
{ name: "Work", href: "/#work" },
{ name: "Services", href: "/services" },
{ name: "About", href: "/about" },
{ name: "Contact", href: "/#contact" }
{ name: "Home", id: "/" },
{ name: "Work", id: "work" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "contact" }
];
const FOOTER_COLUMNS = [