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 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 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