From 05db8a5b0829eee19b26ecb20d30476a6850454a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 19:39:27 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6ef3b33..1b47953 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -32,9 +32,7 @@ export default function RootLayout({ return ( - + {children} @@ -1408,4 +1406,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From fbc01adf93626c7d806eba267062b424fc9e9233 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 19:39:28 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 647a997..33f0933 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,9 +32,9 @@ export default function LandingPage() { navItems={[ { name: "About", id: "about" }, { name: "Portfolio", id: "portfolio" }, + { name: "Projects", id: "/projects" }, { name: "Team", id: "team" }, - { name: "Contact", id: "contact" }, - { name: "Work", id: "portfolio" } + { name: "Contact", id: "contact" } ]} button={{ text: "Get Started", href: "contact" }} brandName="Studio" @@ -57,7 +57,7 @@ export default function LandingPage() { ]} mediaAnimation="blur-reveal" buttons={[ - { text: "View Our Work", href: "portfolio" }, + { text: "View Our Work", href: "/projects" }, { text: "Start a Project", href: "contact" } ]} buttonAnimation="slide-up" @@ -239,9 +239,9 @@ export default function LandingPage() { columns={[ { title: "Navigate", items: [ - { label: "Home", href: "#" }, + { label: "Home", href: "/" }, { label: "About", href: "#about" }, - { label: "Portfolio", href: "#portfolio" }, + { label: "Projects", href: "/projects" }, { label: "Team", href: "#team" } ] }, @@ -275,4 +275,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 93a20d2450d3f996b05fa967fdf4f29b0f53de27 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 19:39:29 +0000 Subject: [PATCH 3/3] Add src/app/projects/page.tsx --- src/app/projects/page.tsx | 191 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 191 insertions(+) create mode 100644 src/app/projects/page.tsx diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx new file mode 100644 index 0000000..676e123 --- /dev/null +++ b/src/app/projects/page.tsx @@ -0,0 +1,191 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Package, Sparkles } from "lucide-react"; + +export default function ProjectsPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1