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 diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 92c4fbc..e0b2a23 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,8 +12,8 @@ import { DM_Sans } from "next/font/google"; export const metadata: Metadata = { - title: 'Cafeteria Wall | Best Cafe in Meham, Haryana', - description: 'Visit Cafeteria Wall on Hisar-Rohtak road for the best coffee, snacks, and a cozy atmosphere near Punjab National Bank in Meham.', + title: 'Cafeteria Wall', + description: 'The perfect blend of cozy vibes, fresh ingredients, and community spirit on Hisar-Rohtak Road.', keywords: ["cafeteria in Meham, best cafe near Hisar-Rohtak road, coffee shop Meham, Cafeteria Wall Meham"], openGraph: { "siteName": "Cafeteria Wall", diff --git a/src/app/page.tsx b/src/app/page.tsx index 3539b31..52a7cfb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; -import ProductCartItem from '@/components/ecommerce/cart/ProductCartItem'; -import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; import { Coffee, Leaf, MapPin, Users } from "lucide-react"; export default function LandingPage() { @@ -29,26 +25,11 @@ export default function LandingPage() {