Update src/app/dining/page.tsx
This commit is contained in:
@@ -6,7 +6,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
|
||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import { UtensilsCrossed, Coffee, Wine } from "lucide-react";
|
||||
import { UtensilsCrossed, Coffee, Wine, ChefHat } from "lucide-react";
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
@@ -29,8 +29,7 @@ const navItemsWithLinks = navItems.map((item) => ({
|
||||
? "/facilities"
|
||||
: item.id === "location"
|
||||
? "/location"
|
||||
: "/",
|
||||
}));
|
||||
: "/"}));
|
||||
|
||||
export default function DiningPage() {
|
||||
return (
|
||||
@@ -51,9 +50,7 @@ export default function DiningPage() {
|
||||
brandName="Mövenpick Karachi"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Book Now",
|
||||
href: "/booking",
|
||||
}}
|
||||
text: "Book Now", href: "/booking"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -63,12 +60,11 @@ export default function DiningPage() {
|
||||
title="Culinary Destination"
|
||||
description="Indulge in world-class dining experiences crafted by award-winning chefs."
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Fine Dining"
|
||||
tagIcon="ChefHat"
|
||||
tagIcon={ChefHat}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6v7ams&_wi=1"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6v7ams"
|
||||
imageAlt="Elegant fine dining restaurant"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
@@ -84,22 +80,16 @@ export default function DiningPage() {
|
||||
features={[
|
||||
{
|
||||
icon: UtensilsCrossed,
|
||||
title: "Fine Dining Restaurant",
|
||||
description:
|
||||
"Award-winning international cuisine in an atmosphere of refined elegance. À la carte and tasting menus available.",
|
||||
},
|
||||
title: "Fine Dining Restaurant", description:
|
||||
"Award-winning international cuisine in an atmosphere of refined elegance. À la carte and tasting menus available."},
|
||||
{
|
||||
icon: Coffee,
|
||||
title: "Breakfast Buffet",
|
||||
description:
|
||||
"Lavish spread of continental and Pakistani specialties. Served daily 6:30 AM to 11:00 AM.",
|
||||
},
|
||||
title: "Breakfast Buffet", description:
|
||||
"Lavish spread of continental and Pakistani specialties. Served daily 6:30 AM to 11:00 AM."},
|
||||
{
|
||||
icon: Wine,
|
||||
title: "Premium Bar",
|
||||
description:
|
||||
"Curated wine selection and signature cocktails. Open until late evening with live entertainment.",
|
||||
},
|
||||
title: "Premium Bar", description:
|
||||
"Curated wine selection and signature cocktails. Open until late evening with live entertainment."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -108,13 +98,9 @@ export default function DiningPage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Mövenpick Karachi"
|
||||
leftLink={{
|
||||
text: "Make a Reservation",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Make a Reservation", href: "/contact"}}
|
||||
rightLink={{
|
||||
text: "Back to Home",
|
||||
href: "/",
|
||||
}}
|
||||
text: "Back to Home", href: "/"}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user