Merge version_2 into main #2

Merged
bender merged 4 commits from version_2 into main 2026-05-25 05:30:22 +00:00
4 changed files with 32 additions and 132 deletions

View File

@@ -7,7 +7,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import SplitAbout from '@/components/sections/about/SplitAbout';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Biography", id: "/about" },
{ name: "Home", id: "/" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="ELARA"
/>
@@ -53,18 +41,9 @@ export default function LandingPage() {
title="The Artist"
description="Driven by the interplay between digital precision and human emotion."
bulletPoints={[
{
title: "Vision",
description: "Creating experiences that challenge perception.",
},
{
title: "Technique",
description: "Blending traditional methods with modern tech.",
},
{
title: "Purpose",
description: "Connecting people through visual stories.",
},
{ title: "Vision", description: "Creating experiences that challenge perception." },
{ title: "Technique", description: "Blending traditional methods with modern tech." },
{ title: "Purpose", description: "Connecting people through visual stories." },
]}
imageSrc="http://img.b2bpic.net/free-photo/side-view-emo-girl-spending-time-indoors_23-2149645107.jpg"
mediaAnimation="blur-reveal"
@@ -76,9 +55,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="The Philosophy"
description={[
"Every piece begins with an exploration of negative space.",
"Digital tools allow me to push the boundaries of traditional composition.",
]}
"Every piece begins with an exploration of negative space.", "Digital tools allow me to push the boundaries of traditional composition."]}
/>
</div>
@@ -86,36 +63,12 @@ export default function LandingPage() {
<FooterBaseCard
logoText="ELARA"
columns={[
{
title: "Studio",
items: [
{
label: "Gallery",
href: "/gallery",
},
{
label: "Biography",
href: "/about",
},
],
},
{
title: "Connect",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "Instagram",
href: "#",
},
],
},
{ title: "Studio", items: [{ label: "Gallery", href: "/gallery" }, { label: "Biography", href: "/about" }] },
{ title: "Connect", items: [{ label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -7,7 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Biography", id: "/about" },
{ name: "Home", id: "/" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="ELARA"
/>
@@ -49,27 +37,18 @@ export default function LandingPage() {
<div id="contact-box" data-section="contact-box">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Inquiry"
title="Work with us"
description="Let's discuss your next project or exhibition."
buttons={[
{
text: "Email Studio",
href: "mailto:hello@elara.art",
},
]}
buttons={[{ text: "Email Studio", href: "mailto:hello@elara.art" }]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Newsletter"
title="Stay Updated"
description="Receive news on latest exhibitions and studio releases."
@@ -80,36 +59,12 @@ export default function LandingPage() {
<FooterBaseCard
logoText="ELARA"
columns={[
{
title: "Studio",
items: [
{
label: "Gallery",
href: "/gallery",
},
{
label: "Biography",
href: "/about",
},
],
},
{
title: "Connect",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "Instagram",
href: "#",
},
],
},
{ title: "Studio", items: [{ label: "Gallery", href: "/gallery" }, { label: "Biography", href: "/about" }] },
{ title: "Connect", items: [{ label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -7,7 +7,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
export default function LandingPage() {
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -25,9 +25,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Biography", id: "/about" },
{ name: "Home", id: "/" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="ELARA"
@@ -67,16 +67,12 @@ export default function LandingPage() {
<FooterBaseCard
logoText="ELARA"
columns={[
{
title: "Studio", items: [{ label: "Gallery", href: "/gallery" }, { label: "Biography", href: "/about" }],
},
{
title: "Connect", items: [{ label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }],
},
{ title: "Studio", items: [{ label: "Gallery", href: "/gallery" }, { label: "Biography", href: "/about" }] },
{ title: "Connect", items: [{ label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -29,9 +29,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Biography", id: "/about" },
{ name: "Home", id: "/" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="ELARA"
@@ -129,16 +129,12 @@ export default function LandingPage() {
<FooterBaseCard
logoText="ELARA"
columns={[
{
title: "Studio", items: [{ label: "Gallery", href: "/gallery" }, { label: "Biography", href: "/about" }],
},
{
title: "Connect", items: [{ label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }],
},
{ title: "Studio", items: [{ label: "Gallery", href: "/gallery" }, { label: "Biography", href: "/about" }] },
{ title: "Connect", items: [{ label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}