From 90d2031915f2a579af0fe0d4c571528a2f835d3b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 20:03:10 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1b47953..92026cb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -16,7 +16,8 @@ export const metadata: Metadata = { openGraph: { title: "Professional Design Studio | Creative Branding & Design", description: "Award-winning design studio creating compelling brand identities and digital experiences.", type: "website", siteName: "Studio", images: [ { - url: "http://img.b2bpic.net/free-photo/workplace-with-laptop_23-2147651756.jpg", alt: "Studio Design Portfolio"}, + url: "http://img.b2bpic.net/free-photo/workplace-with-laptop_23-2147651756.jpg", alt: "Studio Design Portfolio" + }, ], }, twitter: { @@ -1406,4 +1407,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file -- 2.49.1 From 4bfbb1bea76d3541da58f956f8eb76f07aa98f03 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 20:03:11 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 92aa2bf..19b5706 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,7 @@ export default function LandingPage() { navItems={[ { name: "About", id: "about" }, { name: "Portfolio", id: "portfolio" }, - { name: "Projects", id: "/projects" }, + { name: "Product", id: "/product" }, { name: "Team", id: "team" }, { name: "Contact", id: "contact" } ]} @@ -57,7 +57,7 @@ export default function LandingPage() { ]} mediaAnimation="blur-reveal" buttons={[ - { text: "View Our Work", href: "/projects" }, + { text: "View Our Work", href: "/product" }, { text: "Start a Project", href: "contact" } ]} buttonAnimation="slide-up" @@ -241,7 +241,7 @@ export default function LandingPage() { title: "Navigate", items: [ { label: "Home", href: "/" }, { label: "About", href: "#about" }, - { label: "Projects", href: "/projects" }, + { label: "Product", href: "/product" }, { label: "Team", href: "#team" } ] }, @@ -275,4 +275,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 00f7efa21077818a38b81a0136847ea42e3576cf Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 20:03:11 +0000 Subject: [PATCH 3/3] Add src/app/product/page.tsx --- src/app/product/page.tsx | 190 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 190 insertions(+) create mode 100644 src/app/product/page.tsx diff --git a/src/app/product/page.tsx b/src/app/product/page.tsx new file mode 100644 index 0000000..3d2b4bd --- /dev/null +++ b/src/app/product/page.tsx @@ -0,0 +1,190 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +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 ProductPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1