Files
d3df3390-4e32-455f-858f-17a…/src/app/gallery/page.tsx
2026-05-14 23:26:02 +00:00

227 lines
6.3 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="large"
background="fluid"
cardStyle="subtle-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "FAQ",
id: "/faq",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Lash Atelier"
/>
</div>
<div id="gallery-list" data-section="gallery-list">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "g1",
name: "Lash Work 01",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-make-up_1098-18493.jpg",
},
{
id: "g2",
name: "Lash Work 02",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-pink-makeup-close-up_23-2149394107.jpg",
},
{
id: "g3",
name: "Lash Work 03",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/set-cosmetic-paint-brush-makeup_1232-2062.jpg",
},
{
id: "g4",
name: "Lash Work 04",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-person-wearing-make-up-liner_23-2149198530.jpg",
},
{
id: "g5",
name: "Lash Work 05",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/make-up-artist-applying-eyeshadow-with-brush-face_23-2148332498.jpg",
},
{
id: "g6",
name: "Lash Work 06",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/professional-woman-making-up-girl-s-eyes_23-2148210738.jpg",
},
]}
title="Lash Gallery"
description="Our work speaks for itself."
/>
</div>
<div id="product" data-section="product">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Lash Gallery"
description="Our work speaks for itself."
products={[
{
id: "g1",
name: "Lash Work 01",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-make-up_1098-18493.jpg",
},
{
id: "g2",
name: "Lash Work 02",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-pink-makeup-close-up_23-2149394107.jpg",
},
{
id: "g3",
name: "Lash Work 03",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/set-cosmetic-paint-brush-makeup_1232-2062.jpg",
},
{
id: "g4",
name: "Lash Work 04",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-person-wearing-make-up-liner_23-2149198530.jpg",
},
{
id: "g5",
name: "Lash Work 05",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/make-up-artist-applying-eyeshadow-with-brush-face_23-2148332498.jpg",
},
{
id: "g6",
name: "Lash Work 06",
price: "",
imageSrc: "http://img.b2bpic.net/free-photo/professional-woman-making-up-girl-s-eyes_23-2148210738.jpg",
},
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardMedia
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Styles In Action"
description="See the volume transformations."
features={[
{
id: "gal-h1",
title: "Hybrid Look",
description: "Natural yet bold.",
tag: "Client",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-beauty-mulatto-woman-with-long-lashes_633478-2727.jpg",
},
{
id: "gal-h2",
title: "Volume Look",
description: "High density aesthetic.",
tag: "Client",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-female-upper-part-face-young-brunette-girl-hiding-her-nose-mouth-red-flowers-pretty-lady-with-bright-make-up-holding-roses-concept-cosmetics-advertising_132075-12480.jpg",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-spa_23-2148476215.jpg"
logoText="Lash Atelier"
columns={[
{
title: "Navigate",
items: [
{
label: "Services",
href: "/services",
},
{
label: "About",
href: "/about",
},
{
label: "FAQ",
href: "/faq",
},
],
},
{
title: "Connect",
items: [
{
label: "Contact",
href: "/contact",
},
{
label: "Instagram",
href: "#",
},
{
label: "Privacy",
href: "#",
},
],
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}