Merge version_1 into main #1

Merged
bender merged 1 commits from version_1 into main 2026-05-18 08:45:03 +00:00

View File

@@ -7,7 +7,6 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCart from '@/components/ecommerce/cart/ProductCart';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
@@ -28,18 +27,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "/contact" },
]}
brandName="Muscat Dining"
/>
@@ -47,9 +37,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardScroll
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
title="Experience Muscats Finest"
description="Elevate your senses at Line Cafe and 90s Lounge. Premium coffee, gourmet cuisine, and an unforgettable atmosphere."
imageSrc="http://img.b2bpic.net/free-photo/bartender-preparing-drink-bar_23-2150444016.jpg"
@@ -62,9 +50,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Our Heritage"
description={[
"Founded in the heart of Muscat, we bring together passion for coffee and nocturnal elegance.",
"From the morning brews to late night lounge vibes, our spaces redefine luxury.",
]}
"Founded in the heart of Muscat, we bring together passion for coffee and nocturnal elegance.", "From the morning brews to late night lounge vibes, our spaces redefine luxury."]}
/>
</div>
@@ -75,31 +61,11 @@ export default function LandingPage() {
tag="Milestones"
metricsAnimation="slide-up"
metrics={[
{
id: "m1",
value: "10k+",
description: "Happy Coffee Lovers",
},
{
id: "m2",
value: "50+",
description: "Unique Menu Items",
},
{
id: "m3",
value: "2",
description: "Premium Locations",
},
{
id: "m4",
value: "4.9",
description: "Customer Rating",
},
{
id: "m5",
value: "24/7",
description: "Lounge Vibes",
},
{ id: "m1", value: "10k+", description: "Happy Coffee Lovers" },
{ id: "m2", value: "50+", description: "Unique Menu Items" },
{ id: "m3", value: "2", description: "Premium Locations" },
{ id: "m4", value: "4.9", description: "Customer Rating" },
{ id: "m5", value: "24/7", description: "Lounge Vibes" },
]}
/>
</div>
@@ -114,67 +80,29 @@ export default function LandingPage() {
mediaAnimation="blur-reveal"
faqsAnimation="slide-up"
faqs={[
{
id: "q1",
title: "Do I need a reservation?",
content: "For our lounge evening service, we highly recommend booking in advance.",
},
{
id: "q2",
title: "Are there vegan options?",
content: "Yes, we cater to all dietary preferences with dedicated plant-based choices.",
},
{
id: "q3",
title: "Is parking available?",
content: "Both our Al Khuwair and Seeb locations provide ample guest parking.",
},
{
id: "q4",
title: "Can I host events here?",
content: "We host private gatherings. Contact us for group packages and availability.",
},
{
id: "q5",
title: "Are you open for breakfast?",
content: "Our morning coffee service starts at 7:00 AM daily.",
},
{ id: "q1", title: "Do I need a reservation?", content: "For our lounge evening service, we highly recommend booking in advance." },
{ id: "q2", title: "Are there vegan options?", content: "Yes, we cater to all dietary preferences with dedicated plant-based choices." },
{ id: "q3", title: "Is parking available?", content: "Both our Al Khuwair and Seeb locations provide ample guest parking." },
{ id: "q4", title: "Can I host events here?", content: "We host private gatherings. Contact us for group packages and availability." },
{ id: "q5", title: "Are you open for breakfast?", content: "Our morning coffee service starts at 7:00 AM daily." },
]}
/>
</div>
<div id="ecommerce" data-section="ecommerce">
<ProductCart />
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Muscat Dining Group"
columns={[
{
title: "Locations",
items: [
{
label: "Muscat Al Khuwair",
href: "#",
},
{
label: "Muscat Seeb",
href: "#",
},
title: "Locations", items: [
{ label: "Muscat Al Khuwair", href: "#" },
{ label: "Muscat Seeb", href: "#" },
],
},
{
title: "Links",
items: [
{
label: "Instagram",
href: "#",
},
{
label: "WhatsApp",
href: "#",
},
title: "Links", items: [
{ label: "Instagram", href: "#" },
{ label: "WhatsApp", href: "#" },
],
},
]}