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 +} 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 +} 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}