Files
c110f79f-043d-4ba9-82e1-9e0…/src/app/gallery/page.tsx

117 lines
5.5 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import Link from 'next/link';
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="mediumLargeSizeMediumTitles"
background="none"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Arrangements", id: "/arrangements" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" }
]}
brandName="Rose"
bottomLeftText="Premium Floral Design"
bottomRightText="hello@rosestudio.com"
/>
</div>
<div id="gallery-hero" data-section="gallery-hero">
<HeroOverlay
title="Our Floral Artistry"
description="Explore our portfolio of stunning arrangements and event designs that celebrate beauty in every form."
tag="Visual Showcase"
imageSrc="https://img.b2bpic.net/free-photo/vase-with-decorative-flowers_1203-1640.jpg"
imageAlt="Rose gallery showcase"
textPosition="center"
showBlur={true}
/>
</div>
<div id="gallery-showcase" data-section="gallery-showcase">
<BlogCardThree
title="Featured Designs"
description="A selection of our most celebrated floral arrangements and event installations."
blogs={[
{
id: "1", category: "Romantic", title: "Scarlet Romance - Red Rose Centerpiece", excerpt: "A timeless arrangement of premium red roses perfect for anniversaries and romantic celebrations.", imageSrc: "https://img.b2bpic.net/free-photo/vase-with-decorative-flowers_1203-1640.jpg", imageAlt: "Red rose arrangement"
},
{
id: "2", category: "Spring", title: "Spring Awakening - Vibrant Tulip Mix", excerpt: "Celebrate the season with our colorful tulip arrangements featuring soft pastels and bold hues.", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-flowers-blue-surface_23-2147609383.jpg", imageAlt: "Spring tulip arrangement"
},
{
id: "3", category: "Joyful", title: "Sunshine Bliss - Sunflower Installation", excerpt: "Brighten any space with our cheerful sunflower designs that radiate happiness and warmth.", imageSrc: "https://img.b2bpic.net/free-photo/wedding-bouquet-wooden-piece-with-white-candles_114579-2065.jpg", imageAlt: "Sunflower arrangement"
},
{
id: "4", category: "Luxury", title: "Peony Paradise - Premium Pink Collection", excerpt: "Elegant peonies arranged in our signature style for the most discerning floral enthusiasts.", imageSrc: "https://img.b2bpic.net/free-vector/elegant-wedding-invitation-card-with-beautiful-floral_21799-2713.jpg", imageAlt: "Pink peony arrangement"
}
]}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground="invertDefault"
/>
</div>
<div id="gallery-footer" data-section="gallery-footer">
<FooterBaseCard
logoText="Rose"
columns={[
{
title: "Collections", items: [
{ label: "Wedding Flowers", href: "/arrangements" },
{ label: "Event Design", href: "/arrangements" },
{ label: "Everyday Arrangements", href: "/arrangements" },
{ label: "Seasonal Specials", href: "/arrangements" }
]
},
{
title: "Services", items: [
{ label: "Custom Design", href: "/services" },
{ label: "Delivery", href: "/services" },
{ label: "Subscriptions", href: "/services" },
{ label: "Corporate Events", href: "/services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/" },
{ label: "Gallery", href: "/gallery" },
{ label: "Blog", href: "/" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Pinterest", href: "https://pinterest.com" },
{ label: "TikTok", href: "https://tiktok.com" }
]
}
]}
copyrightText="© 2025 Rose Flowers Studio. Crafting beauty with passion."
/>
</div>
</ThemeProvider>
);
}