diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index a06b4d2..a415cdd 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -28,7 +28,7 @@ export default function FeaturesPage() { { name: "Home", id: "/" }, { name: "About", id: "/" }, { name: "Services", id: "/" }, - { name: "Portfolio", id: "/" }, + { name: "Portfolio", id: "/portfolio" }, { name: "Features", id: "/features" }, { name: "Contact", id: "/" }, ]} @@ -73,4 +73,4 @@ export default function FeaturesPage() { ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 4dd9647..f0980ad 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,7 +36,7 @@ export default function LandingPage() { { name: "Services", id: "features"}, { - name: "Portfolio", id: "portfolio"}, + name: "Portfolio", id: "/portfolio"}, { name: "Contact", id: "contact"}, ]} @@ -53,7 +53,7 @@ export default function LandingPage() { description="We turn raw footage into cinematic experiences that captivate your audience and grow your business." buttons={[ { - text: "View Our Portfolio", href: "#portfolio"}, + text: "View Our Portfolio", href: "/portfolio"}, ]} imageSrc="http://img.b2bpic.net/free-photo/electronic-gadgets-used-podcasting_482257-91517.jpg" mediaAnimation="blur-reveal" @@ -129,31 +129,6 @@ export default function LandingPage() { /> -
- -
-
); -} +} \ No newline at end of file diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..9d72363 --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export default function PortfolioPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file