Update src/app/page.tsx
This commit is contained in:
364
src/app/page.tsx
364
src/app/page.tsx
@@ -32,26 +32,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Experience",
|
||||
id: "experience",
|
||||
},
|
||||
{
|
||||
name: "Reservation",
|
||||
id: "reservation",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "location",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Experience", id: "experience" },
|
||||
{ name: "Reservation", id: "reservation" },
|
||||
{ name: "Contact", id: "location" },
|
||||
]}
|
||||
brandName="EATMOSPHERE"
|
||||
/>
|
||||
@@ -59,110 +44,33 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="EATMOSPHERE By Smokin Burg"
|
||||
description="Where Food Meets Atmosphere. Experience premium dining, gourmet burgers, and grilled specials in an exquisite rooftop setting."
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-friends-drinking-champagne-terrace_197531-5841.jpg",
|
||||
imageAlt: "Cafe Night View",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-dining-table-arrangement_23-2150312220.jpg",
|
||||
imageAlt: "Gourmet Dining",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-happy-people-with-food_23-2149409337.jpg",
|
||||
imageAlt: "Lounge Interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sitting-table-with-chairs-yellow-sofa-restaurant-with-panoramic-view_114579-1523.jpg",
|
||||
imageAlt: "Rooftop Atmosphere",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chocolate-fondue-with-sugar-dust-vanilla-ice-cream-image_114579-2313.jpg",
|
||||
imageAlt: "Burger Special",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/young-friends-drinking-champagne-terrace_197531-5841.jpg", imageAlt: "Cafe Night View" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-dining-table-arrangement_23-2150312220.jpg", imageAlt: "Gourmet Dining" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-happy-people-with-food_23-2149409337.jpg", imageAlt: "Lounge Interior" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/sitting-table-with-chairs-yellow-sofa-restaurant-with-panoramic-view_114579-1523.jpg", imageAlt: "Rooftop Atmosphere" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/chocolate-fondue-with-sugar-dust-vanilla-ice-cream-image_114579-2313.jpg", imageAlt: "Burger Special" },
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/meat-cheeseburger-with-mushrooms-pickles_140725-9299.jpg",
|
||||
imageAlt: "Signature Burger",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-potatoes-plate_140725-7287.jpg",
|
||||
imageAlt: "Grilled Special",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-tasty-coffee-assortment_23-2149514291.jpg",
|
||||
imageAlt: "Artisan Mocktail",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-coffee-with-sugar-cubes_23-2148337158.jpg",
|
||||
imageAlt: "Premium Coffee",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-roasted-potatoes-with-herbs-deep-bowl_114579-1927.jpg",
|
||||
imageAlt: "Side Dish",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
text: "Reserve Table",
|
||||
href: "#reservation",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/meat-cheeseburger-with-mushrooms-pickles_140725-9299.jpg", imageAlt: "Signature Burger" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-with-potatoes-plate_140725-7287.jpg", imageAlt: "Grilled Special" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-tasty-coffee-assortment_23-2149514291.jpg", imageAlt: "Artisan Mocktail" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-coffee-with-sugar-cubes_23-2148337158.jpg", imageAlt: "Premium Coffee" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/traditional-roasted-potatoes-with-herbs-deep-bowl_114579-1927.jpg", imageAlt: "Side Dish" },
|
||||
]}
|
||||
buttons={[{ text: "Explore Menu", href: "#menu" }, { text: "Reserve Table", href: "#reservation" }]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-talking-phone-drinking-coffee-outside-street-night_1303-11824.jpg",
|
||||
alt: "Guest 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5738.jpg",
|
||||
alt: "Guest 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/empire-state-building-seen-from-apartment_23-2150897639.jpg",
|
||||
alt: "Guest 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571625.jpg",
|
||||
alt: "Guest 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/waiter-holding-tray-with-glasses-white-wine-it-serving-them-guests-balcony_181624-57937.jpg",
|
||||
alt: "Guest 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/woman-talking-phone-drinking-coffee-outside-street-night_1303-11824.jpg", alt: "Guest 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5738.jpg", alt: "Guest 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/empire-state-building-seen-from-apartment_23-2150897639.jpg", alt: "Guest 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571625.jpg", alt: "Guest 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/waiter-holding-tray-with-glasses-white-wine-it-serving-them-guests-balcony_181624-57937.jpg", alt: "Guest 5" },
|
||||
]}
|
||||
avatarText="Join 2,500+ happy diners"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Premium Dining",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Artisan Burgers",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Rooftop Views",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Late Night",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Urban Vibe",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[{ type: "text", text: "Premium Dining" }, { type: "text", text: "Artisan Burgers" }, { type: "text", text: "Rooftop Views" }, { type: "text", text: "Late Night" }, { type: "text", text: "Urban Vibe" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -186,48 +94,12 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Smokin Signature Burger",
|
||||
price: "₹349",
|
||||
variant: "Gourmet",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cheeseburger-with-fried-egg-tray_23-2148784518.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Flame Grilled Chicken",
|
||||
price: "₹499",
|
||||
variant: "Specials",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-preparing-meal-designing-meal-inside-plate-fry-meat-food-meal_140725-26012.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Seasoned Truffle Fries",
|
||||
price: "₹199",
|
||||
variant: "Sides",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-french-fries-with-copy-space-herbs_23-2148701508.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Mediterranean Veg Wrap",
|
||||
price: "₹289",
|
||||
variant: "Wraps",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wrap-salad-roll_1339-4102.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Blue Lagoon Mocktail",
|
||||
price: "₹249",
|
||||
variant: "Drinks",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/drink-champagne-glass-copy-space_23-2148340077.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Signature Cold Brew",
|
||||
price: "₹229",
|
||||
variant: "Coffee",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-breakfast_23-2148877586.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Smokin Signature Burger", price: "₹349", variant: "Gourmet", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-cheeseburger-with-fried-egg-tray_23-2148784518.jpg" },
|
||||
{ id: "p2", name: "Flame Grilled Chicken", price: "₹499", variant: "Specials", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-preparing-meal-designing-meal-inside-plate-fry-meat-food-meal_140725-26012.jpg" },
|
||||
{ id: "p3", name: "Seasoned Truffle Fries", price: "₹199", variant: "Sides", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-french-fries-with-copy-space-herbs_23-2148701508.jpg" },
|
||||
{ id: "p4", name: "Mediterranean Veg Wrap", price: "₹289", variant: "Wraps", imageSrc: "http://img.b2bpic.net/free-photo/wrap-salad-roll_1339-4102.jpg" },
|
||||
{ id: "p5", name: "Blue Lagoon Mocktail", price: "₹249", variant: "Drinks", imageSrc: "http://img.b2bpic.net/free-photo/drink-champagne-glass-copy-space_23-2148340077.jpg" },
|
||||
{ id: "p6", name: "Signature Cold Brew", price: "₹229", variant: "Coffee", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-coffee-breakfast_23-2148877586.jpg" },
|
||||
]}
|
||||
title="Signature Menu"
|
||||
description="Discover our handpicked collection of gourmet burgers, grilled specials, and premium beverages."
|
||||
@@ -240,30 +112,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Rooftop Dining",
|
||||
descriptions: [
|
||||
"Enjoy open-air seating with cityscape views.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-drinking-beer_23-2149592900.jpg",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Late Night Lounge",
|
||||
descriptions: [
|
||||
"Open until 1 AM for late-night cravings.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cafe-interior-with-orange-sofa-three-tables-three-black-chairs_181624-8624.jpg",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Premium Ambiance",
|
||||
descriptions: [
|
||||
"Sophisticated lighting and modern aesthetics.",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg",
|
||||
},
|
||||
{ id: "f1", title: "Rooftop Dining", descriptions: ["Enjoy open-air seating with cityscape views."], imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-drinking-beer_23-2149592900.jpg" },
|
||||
{ id: "f2", title: "Late Night Lounge", descriptions: ["Open until 1 AM for late-night cravings."], imageSrc: "http://img.b2bpic.net/free-photo/cafe-interior-with-orange-sofa-three-tables-three-black-chairs_181624-8624.jpg" },
|
||||
{ id: "f3", title: "Premium Ambiance", descriptions: ["Sophisticated lighting and modern aesthetics."], imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg" },
|
||||
]}
|
||||
title="The EATMOSPHERE Experience"
|
||||
description="Premium amenities designed for your absolute comfort."
|
||||
@@ -274,47 +125,13 @@ export default function LandingPage() {
|
||||
<TestimonialCardThirteen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="blur-reveal"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "@sarahj",
|
||||
testimonial: "The best burger spot in Kozhikode! The rooftop vibe is unmatched.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-chain-necklace_23-2149409803.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Rahul M.",
|
||||
handle: "@rahulm",
|
||||
testimonial: "Love the late-night hours. Perfect for our group meets.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-business-man-with-mobile_23-2148446269.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Anjali K.",
|
||||
handle: "@anjalik",
|
||||
testimonial: "Sophisticated atmosphere, great food, and amazing service.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-leisure-modern-technology-young-student-with-happy-look-enjoying-high-speed-internet-connection-his-smart-phone-fashionable-man-trendy-headwear-using-electronic-device-cafe_273609-1709.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David L.",
|
||||
handle: "@davidl",
|
||||
testimonial: "Signature burgers are a must-try. Premium experience.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hipster-with-stylish-haircut-beard-sits-table-decided-dine-roadside-cafe-eating-hamburger_613910-19643.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Fahad P.",
|
||||
handle: "@fahadp",
|
||||
testimonial: "Excellent rooftop location and great Mocktails.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-close-up-young-beautiful-girl-street_1153-9652.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", handle: "@sarahj", testimonial: "The best burger spot in Kozhikode! The rooftop vibe is unmatched.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-chain-necklace_23-2149409803.jpg" },
|
||||
{ id: "2", name: "Rahul M.", handle: "@rahulm", testimonial: "Love the late-night hours. Perfect for our group meets.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-business-man-with-mobile_23-2148446269.jpg" },
|
||||
{ id: "3", name: "Anjali K.", handle: "@anjalik", testimonial: "Sophisticated atmosphere, great food, and amazing service.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-leisure-modern-technology-young-student-with-happy-look-enjoying-high-speed-internet-connection-his-smart-phone-fashionable-man-trendy-headwear-using-electronic-device-cafe_273609-1709.jpg" },
|
||||
{ id: "4", name: "David L.", handle: "@davidl", testimonial: "Signature burgers are a must-try. Premium experience.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/hipster-with-stylish-haircut-beard-sits-table-decided-dine-roadside-cafe-eating-hamburger_613910-19643.jpg" },
|
||||
{ id: "5", name: "Fahad P.", handle: "@fahadp", testimonial: "Excellent rooftop location and great Mocktails.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/portrait-close-up-young-beautiful-girl-street_1153-9652.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Loved by Our Guests"
|
||||
@@ -328,36 +145,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "100+",
|
||||
title: "Signature Items",
|
||||
items: [
|
||||
"Burgers",
|
||||
"Mocktails",
|
||||
"Coffee",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "01 AM",
|
||||
title: "Late Night Hours",
|
||||
items: [
|
||||
"Open Late",
|
||||
"Daily",
|
||||
"Nightlife",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "4.3★",
|
||||
title: "Guest Rating",
|
||||
items: [
|
||||
"Satisfied",
|
||||
"Clients",
|
||||
"2500+",
|
||||
],
|
||||
},
|
||||
{ id: "m1", value: "100+", title: "Signature Items", items: ["Burgers", "Mocktails", "Coffee"] },
|
||||
{ id: "m2", value: "01 AM", title: "Late Night Hours", items: ["Open Late", "Daily", "Nightlife"] },
|
||||
{ id: "m3", value: "4.3★", title: "Guest Rating", items: ["Satisfied", "Clients", "2500+"] },
|
||||
]}
|
||||
title="Moments at EATMOSPHERE"
|
||||
description="A glimpse into our rooftop aesthetic."
|
||||
@@ -368,21 +158,9 @@ export default function LandingPage() {
|
||||
<FaqSplitText
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1",
|
||||
title: "Address",
|
||||
content: "South Beach Road, Beach P.O, Kuttichira, Kozhikode, Kerala.",
|
||||
},
|
||||
{
|
||||
id: "faq2",
|
||||
title: "Phone",
|
||||
content: "+91 87147 41777",
|
||||
},
|
||||
{
|
||||
id: "faq3",
|
||||
title: "Opening Hours",
|
||||
content: "Daily: 11 AM - 1 AM",
|
||||
},
|
||||
{ id: "faq1", title: "Address", content: "South Beach Road, Beach P.O, Kuttichira, Kozhikode, Kerala." },
|
||||
{ id: "faq2", title: "Phone", content: "+91 87147 41777" },
|
||||
{ id: "faq3", title: "Opening Hours", content: "Daily: 11 AM - 1 AM" },
|
||||
]}
|
||||
sideTitle="Find Us"
|
||||
sideDescription="South Beach Road, Beach P.O, Kuttichira, Kozhikode. Open till 1 AM."
|
||||
@@ -396,29 +174,11 @@ export default function LandingPage() {
|
||||
title="Book Your Table"
|
||||
description="Reserve your spot at the best rooftop in Kozhikode."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "date",
|
||||
type: "date",
|
||||
placeholder: "Date",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
||||
{ name: "date", type: "date", placeholder: "Date", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "guests",
|
||||
placeholder: "Number of guests and special requests",
|
||||
}}
|
||||
textarea={{ name: "guests", placeholder: "Number of guests and special requests" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/lovely-indian-couple-love-wear-saree-elegant-suit-sitting-restaurant-eating-ice-cream-together_627829-843.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -426,32 +186,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "Reserve",
|
||||
href: "#reservation",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "+91 87147 41777",
|
||||
href: "tel:+918714741777",
|
||||
},
|
||||
{
|
||||
label: "Email Us",
|
||||
href: "mailto:hello@eatmosphere.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Quick Links", items: [{ label: "Menu", href: "#menu" }, { label: "Reserve", href: "#reservation" }] },
|
||||
{ title: "Contact", items: [{ label: "+91 87147 41777", href: "tel:+918714741777" }, { label: "Email Us", href: "mailto:hello@eatmosphere.com" }] },
|
||||
]}
|
||||
logoText="EATMOSPHERE"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user