Merge version_3 into main #3

Merged
bender merged 2 commits from version_3 into main 2026-05-25 14:24:38 +00:00
2 changed files with 88 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{ name: "Home", id: "hero" },
{ name: "Products", id: "products" },
{ name: "Styles", id: "styles" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
@@ -45,7 +46,7 @@ export default function LandingPage() {
<HeroOverlay
title="Transform Your Celebration Into Reality"
description="Explore curated decoration styles and book your perfect venue setup. From elegant classics to bold modern themes, find your event's unique identity."
buttons={[{ text: "Explore Our Styles", href: "#styles" }]}
buttons={[{ text: "Explore Our Styles", href: "/products" }]}
imageSrc="http://img.b2bpic.net/free-photo/candles-bouquets-decorated-table_8353-10193.jpg?_wi=1"
showDimOverlay={true}
avatarText="Trusted by 500+ happy clients"

86
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,86 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Facebook, Instagram, Twitter } from "lucide-react";
export default function ProductsPage() {
const products = [
{ id: "1", name: "Elegant Classic", price: "From $1,200", variant: "Classic Luxury", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-decoration-children-s-baptism_58702-1505.jpg?_wi=1" },
{ id: "2", name: "Vintage Charm", price: "From $950", variant: "Rustic Warmth", imageSrc: "http://img.b2bpic.net/free-photo/golden-bottles-with-ribbons-pine-leaves_23-2148347375.jpg?_wi=1" },
{ id: "3", name: "Boho Chic", price: "From $850", variant: "Free-spirited", imageSrc: "http://img.b2bpic.net/free-photo/champagne-flutes-decorated-with-tiny-roses-stand-table_8353-611.jpg?_wi=1" },
{ id: "4", name: "Industrial Bold", price: "From $1,500", variant: "Urban Modern", imageSrc: "http://img.b2bpic.net/free-photo/close-up-glassware_107420-74258.jpg?_wi=1" }
];
const categories = [
{ title: "Classic Decoration", desc: "Includes premium floral arrangements, fine table settings, and ambient lighting." },
{ title: "Vintage Decoration", desc: "Includes antique furniture rentals, lace runners, and warm candlelight setups." },
{ title: "Boho Decoration", desc: "Includes dreamcatchers, natural wood decor, and vibrant macramé accents." },
{ title: "Industrial Decoration", desc: "Includes metal structures, Edison bulb lighting, and minimalist modern furniture." }
];
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="noise"
cardStyle="gradient-radial"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "products" },
{ name: "Styles", id: "/styles" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="DecorVibe"
/>
</div>
<div id="products" data-section="products" className="py-20">
<ProductCardFour
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={products}
title="Our Products"
description="Discover our diverse decoration themes and the packages included with each."
/>
<div className="grid grid-cols-1 md:grid-cols-2 gap-10 mt-12 container mx-auto px-6">
{categories.map((c, i) => (
<div key={i} className="p-8 bg-card rounded-lg border">
<h3 className="text-2xl font-bold mb-4">{c.title}</h3>
<p className="text-foreground/80">{c.desc}</p>
</div>
))}
</div>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="DecorVibe"
copyrightText="© 2025 DecorVibe. All rights reserved."
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}