From 3c0cdcf02478d42b671dcb4d9009b84651042b8c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:44:44 +0000 Subject: [PATCH 1/3] Update src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx index ddba24a..00a2a39 100644 --- a/src/app/portfolio/page.tsx +++ b/src/app/portfolio/page.tsx @@ -6,10 +6,14 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' export default function PortfolioPage() { const navItems = [{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Portfolio", id: "/portfolio" }, { name: "Pricing", id: "/pricing" }, { name: "Contact", id: "/contact" }]; return ( - - + +

Our Portfolio

- +
); } \ No newline at end of file -- 2.49.1 From c9366824c81cdebd4456fe049d81a9d1f7981760 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:44:45 +0000 Subject: [PATCH 2/3] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 8e56e6f..be232a2 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -1,22 +1,29 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function PricingPage() { const navItems = [{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Portfolio", id: "/portfolio" }, { name: "Pricing", id: "/pricing" }, { name: "Contact", id: "/contact" }]; return ( - - - - + + +
+ +
+
); } \ No newline at end of file -- 2.49.1 From b1770ef80b0f2103e6045db2665474bc58fc4dc1 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:44:45 +0000 Subject: [PATCH 3/3] Update src/app/services/page.tsx --- src/app/services/page.tsx | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 34e5af4..a1dfa04 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -7,14 +7,22 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' export default function ServicesPage() { const navItems = [{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Portfolio", id: "/portfolio" }, { name: "Pricing", id: "/pricing" }, { name: "Contact", id: "/contact" }]; return ( - - - - + + +
+ +
+
); } \ No newline at end of file -- 2.49.1