4 Commits

Author SHA1 Message Date
a6e6fdbe47 Add src/app/portfolio/page.tsx 2026-05-23 02:34:31 +00:00
da58fcb9c1 Update src/app/page.tsx 2026-05-23 02:34:30 +00:00
cc4dde853c Merge version_1 into main
Merge version_1 into main
2026-05-22 12:44:31 +00:00
cb338dbfd2 Merge version_1 into main
Merge version_1 into main
2026-05-22 12:44:01 +00:00
2 changed files with 57 additions and 0 deletions

View File

@@ -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"
/>

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="large"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Work", id: "work" },
{ name: "Booking", id: "contact" },
{ name: "Portfolio", id: "portfolio" },
]}
brandName="Elysian Artistry"
/>
</div>
<div id="portfolio" data-section="portfolio" className="py-20">
<div className="container mx-auto px-4">
<h1 className="text-4xl font-bold mb-8">Our Portfolio</h1>
<p className="text-lg">Explore our collection of live wedding paintings and bespoke event art.</p>
</div>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Services", href: "#work" }, { label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ items: [{ label: "Instagram", href: "#" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
logoText="Elysian Artistry"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}