From 34c933fe2a82da74a67f43a2051645d1d9106532 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 07:54:25 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ae1003d..aa1ab29 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -8,13 +8,13 @@ import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function AboutPage() { const navItems = [ - { name: "Home", id: "/", href: "/" }, - { name: "About", id: "/about", href: "/about" }, - { name: "Services", id: "/services", href: "/services" }, - { name: "Portfolio", id: "/portfolio", href: "/portfolio" }, - { name: "Pricing", id: "/pricing", href: "/pricing" }, - { name: "FAQs", id: "/faqs", href: "/faqs" }, - { name: "Contact", id: "/contact", href: "/contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Portfolio", id: "/portfolio" }, + { name: "Pricing", id: "/pricing" }, + { name: "FAQs", id: "/faqs" }, + { name: "Contact", id: "/contact" }, ]; const footerNavItems = [ -- 2.49.1 From b86ee1525f6194f88aef55661f23a402cf3f42cb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 07:54:25 +0000 Subject: [PATCH 2/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8118bb3..735341e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -22,10 +22,10 @@ export default function ContactPage() { { title: "Deep Digitalstudio", items: [ { label: "Finding Clarity • Building Solutions • Driving Growth", href: "#" }, - { label: "Facebook", href: "https://facebook.com", icon: Facebook }, - { label: "Instagram", href: "https://instagram.com", icon: Instagram }, - { label: "LinkedIn", href: "https://linkedin.com", icon: Linkedin }, - { label: "Twitter", href: "https://twitter.com", icon: Twitter }, + { label: "Facebook", href: "https://facebook.com" }, + { label: "Instagram", href: "https://instagram.com" }, + { label: "LinkedIn", href: "https://linkedin.com" }, + { label: "Twitter", href: "https://twitter.com" }, ], }, { @@ -76,8 +76,7 @@ export default function ContactPage() { logoAlt="Deep Digitalstudio Logo" navItems={navItems.map((item) => ({ name: item.name, - id: item.id, - href: item.id, + id: item.id }))} button={{ text: "Let's Talk", href: "https://wa.me/919780576515"}} @@ -118,8 +117,8 @@ export default function ContactPage() { title: column.title, items: column.items.map((item) => item.href - ? { label: item.label, href: item.href, icon: item.icon as any} - : { label: item.label, icon: item.icon as any} + ? { label: item.label, href: item.href } + : { label: item.label } ), }))} bottomLeftText="© 2025 Deep Digital Studio. All Rights Reserved." -- 2.49.1 From 1a4056b3e691d15446ef95f6c6b4d403b455cedd Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 07:54:26 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2addc03..e4a26b3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,13 +14,13 @@ import { Code, Image, Video, Search, Globe, Sparkles, Star, Award, Bot } from "l export default function HomePage() { const navItems = [ - { name: "Home", id: "/", href: "/" }, - { name: "About", id: "/about", href: "/about" }, - { name: "Services", id: "/services", href: "/services" }, - { name: "Portfolio", id: "/portfolio", href: "/portfolio" }, - { name: "Pricing", id: "/pricing", href: "/pricing" }, - { name: "FAQs", id: "/faqs", href: "/faqs" }, - { name: "Contact", id: "/contact", href: "/contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Portfolio", id: "/portfolio" }, + { name: "Pricing", id: "/pricing" }, + { name: "FAQs", id: "/faqs" }, + { name: "Contact", id: "/contact" }, ]; const footerNavItems = [ -- 2.49.1