diff --git a/src/app/page.tsx b/src/app/page.tsx index b02c5dc..a4e423d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,8 +29,9 @@ export default function LandingPage() { + +

Our Portfolio

+ + + ); +} \ No newline at end of file diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..8e56e6f --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,22 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +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 new file mode 100644 index 0000000..34e5af4 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,20 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +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