From cb2ebb86e10ad25dc6fbb908f70f28b77de6e8a9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 21:12:41 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 188 ++++++++++++++++------------------------------- 1 file changed, 62 insertions(+), 126 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0165d48..4d54287 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,6 +16,40 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react"; export default function WebAgency2Page() { + const navItems = [ + { name: "Work", id: "work" }, + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Contact", href: "/contact" }, + ]; + + const footerColumns = [ + { + title: "Company", items: [ + { label: "About", href: "#about" }, + { label: "Services", href: "#services" }, + { label: "Work", href: "#work" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Services", items: [ + { label: "Web Development", href: "#" }, + { label: "SEO", href: "#" }, + { label: "Branding", href: "#" }, + { label: "UI/UX Design", href: "#" }, + ], + }, + { + title: "Connect", items: [ + { label: "Twitter", href: "#" }, + { label: "LinkedIn", href: "#" }, + { label: "Instagram", href: "#" }, + { label: "Dribbble", href: "#" }, + ], + }, + ]; + return (