Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-28 06:01:56 +00:00

View File

@@ -2,11 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import { Zap, Coffee, Users, MapPin } from 'lucide-react';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Zap, Coffee, Users, MapPin, Star } from 'lucide-react';
export default function GalleryPage() {
return (
@@ -37,39 +37,32 @@ export default function GalleryPage() {
</div>
<div id="gallery" data-section="gallery">
<FeatureCardTwentySix
textboxLayout="default"
<FeatureCardTwentyFour
textboxLayout="split"
animationType="slide-up"
useInvertedBackground={false}
features={[
{
title: "Cozy Seating", description: "Comfortable corners for work or relaxation.", imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-restaurant-coffee-shop-cafe_1203-8597.jpg", buttonIcon: Zap,
},
{
title: "Modern Counter", description: "Where we brew your favorites.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-asian-girl-barista-giving-client-pos-terminal-help-pay-with-credit-card-standing-counter_1258-134046.jpg", buttonIcon: Coffee,
},
{
title: "Warm Atmosphere", description: "Perfect for community gatherings.", imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-with-blurred-effect_23-2148164783.jpg", buttonIcon: Users,
},
{
title: "Spotlight", description: "Near PNB Bank, Meham.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-arranging-table-restaurant_23-2147936228.jpg", buttonIcon: MapPin,
},
]}
title="Visualizing Cafeteria Wall"
description="Explore the aesthetic and warmth of our cafe."
description="Explore the aesthetic and warmth of our cafe, presented in a single, flowing row of facilities."
features={[
{ id: "f1", title: "Cozy Seating", author: "Ambiance", description: "Comfortable corners for work or relaxation.", tags: ["Interior"], imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-restaurant-coffee-shop-cafe_1203-8597.jpg" },
{ id: "f2", title: "Modern Counter", author: "Service", description: "Where we brew your favorites.", tags: ["Barista"], imageSrc: "http://img.b2bpic.net/free-photo/smiling-asian-girl-barista-giving-client-pos-terminal-help-pay-with-credit-card-standing-counter_1258-134046.jpg" },
{ id: "f3", title: "Warm Atmosphere", author: "Community", description: "Perfect for community gatherings.", tags: ["Vibe"], imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-with-blurred-effect_23-2148164783.jpg" },
{ id: "f4", title: "Spotlight", author: "Location", description: "Near PNB Bank, Meham.", tags: ["Location"], imageSrc: "http://img.b2bpic.net/free-photo/young-woman-arranging-table-restaurant_23-2147936228.jpg" },
]}
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardFive
<TestimonialCardThirteen
textboxLayout="default"
animationType="slide-up"
showRating={true}
useInvertedBackground={false}
title="Customer Gallery"
description="Moments shared at Cafeteria Wall."
testimonials={[
{
id: "t1", name: "Sneha", date: "Jan 2025", title: "Amazing", quote: "Loved the interiors!", tag: "Visitor", avatarSrc: "http://img.b2bpic.net/free-photo/vertical-shot-goodlooking-asian-woman-with-laptop-sitting-outdoor-cafe-drinking-coffee_1258-199270.jpg", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-empty-cafeteria_181624-29282.jpg"},
{
id: "t2", name: "Raj", date: "Feb 2025", title: "Cool place", quote: "Best cafe ever.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-enjoying-coffee-cup_23-2148665423.jpg", imageSrc: "http://img.b2bpic.net/free-photo/small-business-items-serving-coffee_23-2149458023.jpg"},
{ id: "t1", name: "Sneha", handle: "@sneha", testimonial: "Loved the interiors!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-goodlooking-asian-woman-with-laptop-sitting-outdoor-cafe-drinking-coffee_1258-199270.jpg" },
{ id: "t2", name: "Raj", handle: "@raj", testimonial: "Best cafe ever.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-enjoying-coffee-cup_23-2148665423.jpg" },
]}
/>
</div>