Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -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 = [
|
||||
|
||||
@@ -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."
|
||||
|
||||
@@ -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 = [
|
||||
|
||||
Reference in New Issue
Block a user