From 901f8b41803f5904a0afc585bc50ec13d6b0d45b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:08:04 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 40 ++++++---------------------------------- 1 file changed, 6 insertions(+), 34 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1a4020d..0d3faa9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,7 @@ import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/F import FeatureBento from "@/components/sections/feature/FeatureBento"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import FooterCard from "@/components/sections/footer/FooterCard"; import Link from "next/link"; import { Layout, @@ -39,35 +39,6 @@ export default function HomePage() { { name: "Process", id: "/process" }, ]; - const footerColumns = [ - { - title: "Services", items: [ - { label: "Web Design & Development", href: "/services" }, - { label: "Digital Marketing Strategy", href: "/services" }, - { label: "SEO & Search Visibility", href: "/services" }, - { label: "Paid Advertising", href: "/services" }, - { label: "AI Optimization", href: "/services" }, - ], - }, - { - title: "Company", items: [ - { label: "About Us", href: "/about" }, - { label: "Portfolio", href: "/portfolio" }, - { label: "Process", href: "#process" }, - { label: "Contact", href: "/contact" }, - { label: "Blog", href: "#" }, - ], - }, - { - title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Cookie Policy", href: "#" }, - { label: "Disclaimer", href: "#" }, - ], - }, - ]; - return ( @@ -332,11 +304,11 @@ export default function HomePage() { ); -} \ No newline at end of file +} From 7b25ac9c2b4ad1ba8adc54c88920fba554b82c0d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:08:04 +0000 Subject: [PATCH 2/2] Update src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 40 ++++++-------------------------------- 1 file changed, 6 insertions(+), 34 deletions(-) diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index 4b966e3..260265d 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -5,7 +5,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating import HeroCentered from "@/components/sections/hero/HeroCentered"; import FeatureBento from "@/components/sections/feature/FeatureBento"; import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; -import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import FooterCard from "@/components/sections/footer/FooterCard"; import Link from "next/link"; import { TrendingUp, @@ -24,35 +24,6 @@ export default function PortfolioPage() { { name: "Process", id: "/process" }, ]; - const footerColumns = [ - { - title: "Services", items: [ - { label: "Web Design & Development", href: "/services" }, - { label: "Digital Marketing Strategy", href: "/services" }, - { label: "SEO & Search Visibility", href: "/services" }, - { label: "Paid Advertising", href: "/services" }, - { label: "AI Optimization", href: "/services" }, - ], - }, - { - title: "Company", items: [ - { label: "About Us", href: "/about" }, - { label: "Portfolio", href: "/portfolio" }, - { label: "Process", href: "#process" }, - { label: "Contact", href: "/contact" }, - { label: "Blog", href: "#" }, - ], - }, - { - title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Cookie Policy", href: "#" }, - { label: "Disclaimer", href: "#" }, - ], - }, - ]; - return ( @@ -168,11 +140,11 @@ export default function PortfolioPage() { ); -} \ No newline at end of file +}