diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index 6559a66..b24f1da 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -71,6 +71,7 @@ export default function PortfolioPage() { carouselMode="buttons" gridVariant="three-columns-all-equal-width" animationType="slide-up" + textboxLayout="default" useInvertedBackground={false} /> diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx index 3ba78ab..404a231 100644 --- a/src/app/privacy-policy/page.tsx +++ b/src/app/privacy-policy/page.tsx @@ -3,10 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; -import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import Link from "next/link"; -import { Facebook, Instagram, Linkedin, Twitter } from "lucide-react"; export default function PrivacyPolicyPage() { const navItems = [ @@ -17,44 +14,19 @@ export default function PrivacyPolicyPage() { { name: "Pricing", id: "/pricing" }, { name: "FAQs", id: "/faqs" }, { name: "Contact", id: "/contact" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Refund Policy", id: "/refund-policy" } ]; - const footerColumns = [ - { - 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 }, - ], - }, - { - 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" }, - ], - }, - { - 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" }, - ], - }, - { - 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: "#" }, - ], - }, + 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" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + { label: "Refund Policy", href: "/refund-policy" } ]; return ( @@ -75,50 +47,53 @@ export default function PrivacyPolicyPage() { 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, - }))} - button={{ - text: "Let's Talk", href: "https://wa.me/919780576515"}} + navItems={navItems} + button={{ text: "Let's Talk", href: "https://wa.me/919780576515" }} />