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 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 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