Add src/app/gallery/page.tsx
This commit is contained in:
67
src/app/gallery/page.tsx
Normal file
67
src/app/gallery/page.tsx
Normal file
@@ -0,0 +1,67 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
|
||||
export default function GalleryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="aurora"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Начало", id: "/" },
|
||||
{ name: "Галерия", id: "#gallery" },
|
||||
{ name: "Контакти", id: "/contact" }
|
||||
]}
|
||||
brandName="La Habana Beach"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery" className="pt-32">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "g1", name: "Вечерна атмосфера", price: "", imageSrc: "http://img.b2bpic.net/free-photo/water-twilight-coconut-sunset-swimming_1203-5155.jpg" },
|
||||
{ id: "g2", name: "Коктейли на брега", price: "", imageSrc: "http://img.b2bpic.net/free-photo/water-white-beverage-drink-party_1203-5572.jpg" },
|
||||
{ id: "g3", name: "Плажен комфорт", price: "", imageSrc: "http://img.b2bpic.net/free-photo/tropical-lifestyle-umbrella-outdoor-beach_1203-4747.jpg" },
|
||||
{ id: "g4", name: "Незабравими залези", price: "", imageSrc: "http://img.b2bpic.net/free-photo/landscape-resort-holiday-pool-tropical_1203-5202.jpg" },
|
||||
{ id: "g5", name: "Музика на живо", price: "", imageSrc: "http://img.b2bpic.net/free-photo/girl-laughing-holding-guitar_23-2148504909.jpg" },
|
||||
{ id: "g6", name: "Тропически вайб", price: "", imageSrc: "http://img.b2bpic.net/free-photo/coconut-still-life_23-2151526768.jpg" }
|
||||
]}
|
||||
title="Моменти в La Habana"
|
||||
description="Поглед към нашата атмосфера, коктейли и незабравими емоции."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="La Habana Beach"
|
||||
columns={[
|
||||
{ title: "Навигация", items: [{ label: "Начало", href: "/" }, { label: "Галерия", href: "#gallery" }] },
|
||||
{ title: "Контакти", items: [{ label: "0888 123 456", href: "tel:0888123456" }, { label: "Поморие, България", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 La Habana Beach. Всички права запазени."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user