diff --git a/src/app/page.tsx b/src/app/page.tsx index d6bdb94..f36473f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,6 +36,7 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Work", id: "work" }, { name: "Booking", id: "contact" }, + { name: "Portfolio", id: "portfolio" }, ]} brandName="Elysian Artistry" /> diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..e0b3876 --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -0,0 +1,56 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; + +export default function PortfolioPage() { + return ( + + + + +
+
+

Our Portfolio

+

Explore our collection of live wedding paintings and bespoke event art.

+
+
+ + +
+
+ ); +}