From fc29433b565c4d3a9983cac89b458f0233973e42 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 07:59:29 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2fce873..8be3260 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -102,7 +102,7 @@ export default function ContactPage() { text="Send Us a Message\n\n[Placeholder for Name, Email, Phone, Service Interested In (dropdown), Message, Submit button form input fields]" buttons={[ { - text: "Submit"}, + text: "Submit"} ]} background={{ variant: "plain"}} @@ -119,7 +119,7 @@ export default function ContactPage() { item.href ? { label: item.label, href: item.href } : { label: item.label } - ), + ) }))} bottomLeftText="© 2025 Deep Digital Studio. All Rights Reserved." bottomRightText="Privacy Policy | Refund Policy | Terms & Conditions" -- 2.49.1 From 8dc9301f32e7c4dc64fb61f35a476af1091cb1ba Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 6 Jun 2026 07:59:30 +0000 Subject: [PATCH 2/2] Update src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 150 +++++++++++++------------------------ 1 file changed, 54 insertions(+), 96 deletions(-) diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index faeba2f..6559a66 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -1,11 +1,9 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; import ProductCardThree from "@/components/sections/product/ProductCardThree"; -import ContactText from "@/components/sections/contact/ContactText"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function PortfolioPage() { const navItems = [ @@ -15,45 +13,31 @@ export default function PortfolioPage() { { name: "Portfolio", id: "/portfolio" }, { name: "Pricing", id: "/pricing" }, { name: "FAQs", id: "/faqs" }, - { name: "Contact", id: "/contact" }, + { name: "Contact", id: "/contact" } ]; - const footerColumns = [ + const footerNavItems = [ + { label: "Home", href: "/" }, + { label: "About Us", href: "/about" }, + { label: "Services", href: "/services" }, + { label: "Portfolio", href: "/portfolio" }, + { label: "Pricing", href: "/pricing" }, + { label: "Contact", href: "/contact" } + ]; + + const products = [ { - title: "Deep Digitalstudio", items: [ - { label: "Finding Clarity • Building Solutions • Driving Growth", href: "#" }, - { label: "Facebook", href: "https://facebook.com" }, - { label: "Instagram", href: "https://instagram.com" }, - { label: "LinkedIn", href: "https://linkedin.com" }, - { label: "Twitter", href: "https://twitter.com" }, - ], + id: "1", name: "E-commerce Website", price: "$999", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eko28LoH3CKSqWkPz5FirfimLV/uploaded-1780731783317-ao33g654.jpg", imageAlt: "E-commerce Website" }, { - title: "Quick Links", items: [ - { label: "Home", href: "/" }, - { label: "About Us", href: "/about" }, - { label: "Services", href: "/services" }, - { label: "Portfolio", href: "/portfolio" }, - { label: "Pricing", href: "/pricing" }, - { label: "Contact", href: "/contact" }, - ], + id: "2", name: "Portfolio Website", price: "$799", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eko28LoH3CKSqWkPz5FirfimLV/uploaded-1780731783317-ao33g654.jpg", imageAlt: "Portfolio Website" }, { - title: "Services", items: [ - { label: "No-Code Website Development", href: "/services" }, - { label: "Landing Page Development", href: "/services" }, - { label: "AI Product Images", href: "/services" }, - { label: "AI Product Videos", href: "/services" }, - { label: "Social Media Management", href: "/services" }, - ], + id: "3", name: "Landing Page", price: "$499", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eko28LoH3CKSqWkPz5FirfimLV/uploaded-1780731783317-ao33g654.jpg", imageAlt: "Landing Page" }, { - title: "Contact", items: [ - { label: "Email: Deep.digitalstudio24@gmail.com", href: "mailto:Deep.digitalstudio24@gmail.com" }, - { label: "Phone/WhatsApp: +91 97805 76515", href: "https://wa.me/919780576515" }, - { label: "Address: [Your Address Placeholder]", href: "#" }, - ], - }, + id: "4", name: "AI Product Images", price: "$299", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eko28LoH3CKSqWkPz5FirfimLV/uploaded-1780731783317-ao33g654.jpg", imageAlt: "AI Product Images" + } ]; return ( @@ -74,83 +58,57 @@ export default function PortfolioPage() { brandName="Deep Digitalstudio" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eko28LoH3CKSqWkPz5FirfimLV/uploaded-1780731783317-ao33g654.jpg" logoAlt="Deep Digitalstudio Logo" - navItems={navItems.map((item) => ({ - name: item.name, - id: item.id, - href: item.id === "/" ? "/" : item.id, // Ensure home link is just "/" - }))} - button={{ - text: "Let's Talk", href: "https://wa.me/919780576515"}} + navItems={navItems} + button={{ text: "Let's Talk", href: "https://wa.me/919780576515" }} /> -
+
-
- -
-
-
- -
- -- 2.49.1