diff --git a/src/app/page.tsx b/src/app/page.tsx
index 315f10a..0e87626 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,7 +9,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
-import { Wine } from "lucide-react";
+import { Wine, Coffee, Martini, Gamepad2, Music } from "lucide-react";
export default function LandingPage() {
return (
@@ -29,22 +29,10 @@ export default function LandingPage() {
@@ -52,48 +40,17 @@ export default function LandingPage() {
@@ -116,30 +73,10 @@ export default function LandingPage() {
textboxLayout="inline-image"
useInvertedBackground={false}
features={[
- {
- title: "Specialty Coffee",
- description: "Expertly brewed coffee for any time.",
- imageSrc: "http://img.b2bpic.net/free-photo/trendy-coffee-shop-city_53876-139693.jpg",
- buttonIcon: "Coffee",
- },
- {
- title: "Craft Cocktails",
- description: "Handcrafted cocktails and 3L draft beers.",
- imageSrc: "http://img.b2bpic.net/free-photo/delicious-american-beer-assortment_23-2148907564.jpg",
- buttonIcon: "Martini",
- },
- {
- title: "Billiards Lounge",
- description: "Premium tables for your competitive fun.",
- imageSrc: "http://img.b2bpic.net/free-photo/young-happy-couple-playing-pool_107420-84944.jpg",
- buttonIcon: "Gamepad2",
- },
- {
- title: "Atmosphere",
- description: "Underground vibes in the heart of UB.",
- imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-playing-pool_107420-84945.jpg",
- buttonIcon: "Music",
- },
+ { title: "Specialty Coffee", description: "Expertly brewed coffee for any time.", imageSrc: "http://img.b2bpic.net/free-photo/trendy-coffee-shop-city_53876-139693.jpg", buttonIcon: Coffee },
+ { title: "Craft Cocktails", description: "Handcrafted cocktails and 3L draft beers.", imageSrc: "http://img.b2bpic.net/free-photo/delicious-american-beer-assortment_23-2148907564.jpg", buttonIcon: Martini },
+ { title: "Billiards Lounge", description: "Premium tables for your competitive fun.", imageSrc: "http://img.b2bpic.net/free-photo/young-happy-couple-playing-pool_107420-84944.jpg", buttonIcon: Gamepad2 },
+ { title: "Atmosphere", description: "Underground vibes in the heart of UB.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-playing-pool_107420-84945.jpg", buttonIcon: Music },
]}
title="Our Offerings"
description="A curated experience for the senses."
@@ -151,46 +88,11 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={true}
testimonials={[
- {
- id: "1",
- title: "Great Drinks",
- quote: "The cocktails were excellent.",
- name: "John D.",
- role: "Guest",
- imageSrc: "http://img.b2bpic.net/free-photo/front-view-bartender-preparing-drink_23-2150494242.jpg",
- },
- {
- id: "2",
- title: "Perfect Food",
- quote: "The house burger was simply perfect.",
- name: "Sarah K.",
- role: "Guest",
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-rich-woman-indoors-with-book_23-2149548507.jpg",
- },
- {
- id: "3",
- title: "Best Vibe",
- quote: "Really enjoyed the cocktails and the atmosphere.",
- name: "Mike B.",
- role: "Guest",
- imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-night-city-with-young-woman_23-2149124061.jpg",
- },
- {
- id: "4",
- title: "Must Visit",
- quote: "A hidden gem in Ulaanbaatar.",
- name: "Anna P.",
- role: "Guest",
- imageSrc: "http://img.b2bpic.net/free-photo/male-bartender-serving-cocktail-martini-glass_23-2148209352.jpg",
- },
- {
- id: "5",
- title: "Sophisticated",
- quote: "The billiard room is world class.",
- name: "Leo T.",
- role: "Guest",
- imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-thoughtfully-looking-away-by-window-modern-self-service-laundry-night_574295-2573.jpg",
- },
+ { id: "1", title: "Great Drinks", quote: "The cocktails were excellent.", name: "John D.", role: "Guest", imageSrc: "http://img.b2bpic.net/free-photo/front-view-bartender-preparing-drink_23-2150494242.jpg" },
+ { id: "2", title: "Perfect Food", quote: "The house burger was simply perfect.", name: "Sarah K.", role: "Guest", imageSrc: "http://img.b2bpic.net/free-photo/portrait-rich-woman-indoors-with-book_23-2149548507.jpg" },
+ { id: "3", title: "Best Vibe", quote: "Really enjoyed the cocktails and the atmosphere.", name: "Mike B.", role: "Guest", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-night-city-with-young-woman_23-2149124061.jpg" },
+ { id: "4", title: "Must Visit", quote: "A hidden gem in Ulaanbaatar.", name: "Anna P.", role: "Guest", imageSrc: "http://img.b2bpic.net/free-photo/male-bartender-serving-cocktail-martini-glass_23-2148209352.jpg" },
+ { id: "5", title: "Sophisticated", quote: "The billiard room is world class.", name: "Leo T.", role: "Guest", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-thoughtfully-looking-away-by-window-modern-self-service-laundry-night_574295-2573.jpg" },
]}
title="Guest Stories"
description="4.5 ⭐ rating from 31 reviews."
@@ -199,6 +101,12 @@ export default function LandingPage() {