From fc7b691d6301ababa726b6b19255788564179498 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 02:05:19 +0000 Subject: [PATCH 1/3] Update src/app/features/page.tsx --- src/app/features/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.49.1 From 9e3d7d03837e807c60f815a27ecba20e1fd0a18f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 02:05:20 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 33 ++++----------------------------- 1 file changed, 4 insertions(+), 29 deletions(-) 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 -- 2.49.1 From 8b9776b4342e8f3ca644548b2596aa3e0865386b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 02:05:20 +0000 Subject: [PATCH 3/3] Add src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 67 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/app/portfolio/page.tsx 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 -- 2.49.1