From b5bed8e646493f09b2907b9665a43aa9e00b20f4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 05:53:07 +0000 Subject: [PATCH] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 109 ++++++--------------------------------- 1 file changed, 16 insertions(+), 93 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index b7e9697..2203260 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -6,8 +6,9 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent 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'; -export default function LandingPage() { +export default function GalleryPage() { return ( @@ -56,28 +42,16 @@ export default function LandingPage() { 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: "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: "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: "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: "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" @@ -93,72 +67,21 @@ export default function LandingPage() { 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: "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: "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"}, ]} /> ); -} +} \ No newline at end of file