Merge version_1 into main #5

Merged
bender merged 3 commits from version_1 into main 2026-06-06 08:00:45 +00:00
3 changed files with 91 additions and 153 deletions

View File

@@ -71,6 +71,7 @@ export default function PortfolioPage() {
carouselMode="buttons"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>

View File

@@ -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" }}
/>
</div>
<div id="privacy-policy-content" data-section="privacy-policy-content">
<InlineImageSplitTextAbout
heading={[
{
type: "text", content: "Privacy Policy"},
{ type: "text", content: "Privacy Policy" },
{ type: "text", content: "Your privacy is important to us. This policy explains how we collect, use, and protect your personal information." }
]}
description="At Deep Digitalstudio, we are committed to protecting your privacy. This policy outlines how we collect, use, and safeguard your personal information. We collect information such as your name, email, and phone number when you engage with our services or contact us. This data is used solely for project communication, service delivery, and improving our offerings. We do not share or sell your information to third parties. Your data is stored securely and accessed only by authorized personnel. For any privacy concerns, please contact us at Deep.digitalstudio24@gmail.com."
useInvertedBackground={true}
/>
</div>
<div id="privacy-page-disclaimer" data-section="privacy-page-disclaimer">
<ContactText
text="Your trust is our priority. Feel free to reach out with any questions regarding our privacy practices."
background={{
variant: "plain"}}
animationType="entrance-slide"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns.map((column) => ({
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}
),
}))}
columns={[
{
title: "Deep Digitalstudio", items: [
{ label: "Finding Clarity • Building Solutions • Driving Growth" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Twitter", href: "https://twitter.com" }
]
},
{ title: "Quick Links", items: footerNavItems },
{
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]" }
]
}
]}
bottomLeftText="© 2025 Deep Digital Studio. All Rights Reserved."
bottomRightText="Privacy Policy | Refund Policy | Terms & Conditions"
useInvertedBackground={true}
/>
</div>
</ThemeProvider>

View File

@@ -1,11 +1,9 @@
"use client";
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 NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FooterSimple from "@/components/sections/footer/FooterSimple";
export default function RefundPolicyPage() {
const navItems = [
@@ -15,51 +13,20 @@ export default function RefundPolicyPage() {
{ name: "Portfolio", id: "/portfolio" },
{ name: "Pricing", id: "/pricing" },
{ name: "FAQs", id: "/faqs" },
{ name: "Contact", id: "/contact" }
{ 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" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Twitter", href: "https://twitter.com" }
]
},
{
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 bottomRightLinks = [
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" },
{ label: "Terms & Conditions", href: "/terms-conditions" }
{ label: "Refund Policy", href: "/refund-policy" }
];
return (
@@ -81,59 +48,54 @@ export default function RefundPolicyPage() {
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eko28LoH3CKSqWkPz5FirfimLV/uploaded-1780731783317-ao33g654.jpg"
logoAlt="Deep Digitalstudio Logo"
navItems={navItems}
button={{
text: "Let's Talk", href: "https://wa.me/919780576515"
}}
button={{ text: "Let's Talk", href: "https://wa.me/919780576515" }}
/>
</div>
<div id="refund-policy-content" data-section="refund-policy-content">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Privacy Policy" }
{ type: "text", content: "Refund Policy" },
{ type: "text", content: "We aim for your satisfaction. This policy outlines conditions for refunds and returns." }
]}
description="At Deep Digitalstudio, we are committed to protecting your privacy. This policy outlines how we collect, use, and safeguard your personal information. We collect information such as your name, email, and phone number when you engage with our services or contact us. This data is used solely for project communication, service delivery, and improving our offerings. We do not share or sell your information to third parties. Your data is stored securely and accessed only by authorized personnel. For any privacy concerns, please contact us at Deep.digitalstudio24@gmail.com."
useInvertedBackground={true}
/>
</div>
<div id="refund-policy-questions-cta" data-section="refund-policy-questions-cta">
<ContactText
text="Got questions about our Refund Policy? We're here to help."
buttons={[
{ text: "Contact Support", href: "/contact" }
]}
background={{
variant: "plain"
}}
animationType="entrance-slide"
useInvertedBackground={false}
/>
</div>
<div id="refund-page-disclaimer" data-section="refund-page-disclaimer">
<ContactText
text="Your trust is our priority. Feel free to reach out with any questions regarding our privacy practices."
background={{
variant: "plain"
}}
animationType="entrance-slide"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
columns={[
{
title: "Deep Digitalstudio", items: [
{ label: "Finding Clarity • Building Solutions • Driving Growth" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Twitter", href: "https://twitter.com" }
]
},
{ title: "Quick Links", items: footerNavItems },
{
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]" }
]
}
]}
bottomLeftText="© 2025 Deep Digital Studio. All Rights Reserved."
bottomRightText={bottomRightLinks.map((link, index) => (
<Link key={index} href={link.href} className="hover:underline">
{link.label}{index < bottomRightLinks.length - 1 ? " | " : ""}
</Link>
))}
useInvertedBackground={true}
bottomRightText="Privacy Policy | Refund Policy | Terms & Conditions"
/>
</div>
</ThemeProvider>
);
}
}