Update src/app/page.tsx

This commit is contained in:
2025-12-21 16:42:55 +00:00
parent 0b87d314a6
commit c2c270c7dd

View File

@@ -1,15 +1,6 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
import SplitAboutCards from '@/components/sections/about/SplitAboutCards';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactText from '@/components/sections/contact/ContactText';
import FooterSocial from '@/components/sections/footer/FooterSocial';
import TeamCardSeven from '@/components/sections/team/TeamCardSeven';
import { Instagram, Facebook, ShoppingCart } from "lucide-react";
export default function LandingPage() {
return (
@@ -26,217 +17,252 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Mongusta"
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Reserve", href: "contact" }}
/>
<div className="min-h-[60px] bg-background border-b border-border flex items-center justify-center px-4">
<div className="text-xl font-semibold text-foreground">Mongusta Coffee Shop</div>
</div>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
logoText="MONGUSTA"
description="Experience premium specialty coffee in the heart of Amsterdam. Handcrafted beverages, locally roasted beans, and a welcoming community space where coffee lovers unite."
buttons={[
{ text: "View Menu", href: "menu" },
{ text: "Visit Us", href: "contact" }
]}
layoutOrder="default"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140051179-xqh9zjdi.jpg"
imageAlt="Fresh espresso drink at Mongusta coffee shop"
frameStyle="card"
/>
<div className="min-h-screen bg-background flex items-center justify-center px-4">
<div className="text-center">
<h1 className="text-4xl md:text-6xl font-bold text-foreground mb-4">MONGUSTA</h1>
<p className="text-lg text-foreground/70 max-w-2xl mx-auto mb-8">
Experience premium specialty coffee in the heart of Amsterdam. Handcrafted beverages, locally roasted beans, and a welcoming community space where coffee lovers unite.
</p>
<div className="flex gap-4 justify-center">
<a href="#menu" className="px-6 py-3 bg-primary-cta text-white rounded hover:opacity-90 transition-opacity">
View Menu
</a>
<a href="#contact" className="px-6 py-3 border border-border rounded hover:bg-accent transition-colors">
Visit Us
</a>
</div>
</div>
</div>
</div>
<div id="about" data-section="about">
<SplitAboutCards
tag="Our Story"
title="Crafted for Coffee Enthusiasts"
description="Mongusta brings specialty coffee culture to Amsterdam with a commitment to quality, sustainability, and community. Founded in 2018, we source the finest beans from ethical producers and roast them fresh daily."
features={[
{
id: "roasting",
title: "Artisan Roasting",
description: "Small batch roasting ensures every bean reaches peak flavor. Our roasters work with passion to bring out unique characteristics from each origin.",
label: "Daily Fresh"
},
{
id: "atmosphere",
title: "Welcoming Space",
description: "More than a cafe, Mongusta is a gathering place. Comfortable seating, free wifi, and a warm atmosphere make it perfect for work or conversation.",
label: "Community First"
}
]}
buttons={[
{ text: "Learn More", href: "#" }
]}
useInvertedBackground="noInvert"
/>
<div className="py-20 px-4 bg-background">
<div className="max-w-4xl mx-auto text-center">
<h2 className="text-3xl font-bold text-foreground mb-8">Crafted for Coffee Enthusiasts</h2>
<p className="text-lg text-foreground/70 mb-12">
Mongusta brings specialty coffee culture to Amsterdam with a commitment to quality, sustainability, and community. Founded in 2018, we source the finest beans from ethical producers and roast them fresh daily.
</p>
<div className="grid md:grid-cols-2 gap-8">
<div className="p-6 card rounded">
<h3 className="text-xl font-semibold text-foreground mb-4">Artisan Roasting</h3>
<p className="text-foreground/70">
Small batch roasting ensures every bean reaches peak flavor. Our roasters work with passion to bring out unique characteristics from each origin.
</p>
</div>
<div className="p-6 card rounded">
<h3 className="text-xl font-semibold text-foreground mb-4">Welcoming Space</h3>
<p className="text-foreground/70">
More than a cafe, Mongusta is a gathering place. Comfortable seating, free wifi, and a warm atmosphere make it perfect for work or conversation.
</p>
</div>
</div>
</div>
</div>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
title="Our Menu"
description="Discover our signature drinks crafted with precision and passion"
products={[
{
id: "1",
brand: "Mongusta",
name: "Signature Latte",
price: "€4.50",
rating: 5,
reviewCount: "320",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140052116-ugc31hy1.jpg",
imageAlt: "Smooth and creamy signature latte",
button: { text: "Buy Now", href: "#", icon: ShoppingCart }
},
{
id: "2",
brand: "Mongusta",
name: "Double Espresso",
price: "€2.80",
rating: 5,
reviewCount: "450",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766321575502-dja1nmgo.jpg",
imageAlt: "Rich and bold double espresso shot",
button: { text: "Buy Now", href: "#", icon: ShoppingCart }
},
{
id: "3",
brand: "Mongusta",
name: "Iced Cold Brew",
price: "€4.20",
rating: 5,
reviewCount: "280",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140058956-okqwoo8n.jpg",
imageAlt: "Refreshing cold brew concentrate",
button: { text: "Buy Now", href: "#", icon: ShoppingCart }
}
]}
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
containerStyle="default"
animationType="slide-up"
useInvertedBackground="noInvert"
/>
<div className="py-20 px-4 bg-background">
<div className="max-w-6xl mx-auto">
<div className="text-center mb-12">
<h2 className="text-3xl font-bold text-foreground mb-4">Our Menu</h2>
<p className="text-lg text-foreground/70">
Discover our signature drinks crafted with precision and passion
</p>
</div>
<div className="grid md:grid-cols-3 gap-8">
<div className="card rounded overflow-hidden">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140052116-ugc31hy1.jpg" alt="Smooth and creamy signature latte" className="w-full h-48 object-cover" />
<div className="p-6">
<h3 className="text-xl font-semibold text-foreground mb-2">Signature Latte</h3>
<p className="text-2xl font-bold text-foreground mb-4">4.50</p>
<button className="w-full px-4 py-2 bg-primary-cta text-white rounded hover:opacity-90 transition-opacity">
Buy Now
</button>
</div>
</div>
<div className="card rounded overflow-hidden">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766321575502-dja1nmgo.jpg" alt="Rich and bold double espresso shot" className="w-full h-48 object-cover" />
<div className="p-6">
<h3 className="text-xl font-semibold text-foreground mb-2">Double Espresso</h3>
<p className="text-2xl font-bold text-foreground mb-4">2.80</p>
<button className="w-full px-4 py-2 bg-primary-cta text-white rounded hover:opacity-90 transition-opacity">
Buy Now
</button>
</div>
</div>
<div className="card rounded overflow-hidden">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140058956-okqwoo8n.jpg" alt="Refreshing cold brew concentrate" className="w-full h-48 object-cover" />
<div className="p-6">
<h3 className="text-xl font-semibold text-foreground mb-2">Iced Cold Brew</h3>
<p className="text-2xl font-bold text-foreground mb-4">4.20</p>
<button className="w-full px-4 py-2 bg-primary-cta text-white rounded hover:opacity-90 transition-opacity">
Buy Now
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="team" data-section="team">
<TeamCardSeven
team={[
{
id: "1",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766163678723-295psgl3.jpg",
imageAlt: "Damiano Patri, Owner and Founder"
},
{
id: "2",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140063369-vzpeyskp.jpg",
imageAlt: "Lorenzo Noya, Co-Founder"
}
]}
title="Meet Our Team"
useInvertedBackground="noInvert"
/>
<div className="py-20 px-4 bg-background">
<div className="max-w-4xl mx-auto text-center">
<h2 className="text-3xl font-bold text-foreground mb-12">Meet Our Team</h2>
<div className="grid md:grid-cols-2 gap-8 justify-center">
<div className="card rounded overflow-hidden">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766163678723-295psgl3.jpg" alt="Damiano Patri, Owner and Founder" className="w-full h-64 object-cover" />
<div className="p-6">
<h3 className="text-xl font-semibold text-foreground">Damiano Patri</h3>
<p className="text-foreground/70">Owner and Founder</p>
</div>
</div>
<div className="card rounded overflow-hidden">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140063369-vzpeyskp.jpg" alt="Lorenzo Noya, Co-Founder" className="w-full h-64 object-cover" />
<div className="p-6">
<h3 className="text-xl font-semibold text-foreground">Lorenzo Noya</h3>
<p className="text-foreground/70">Co-Founder</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
title="What Our Guests Say"
description="Join hundreds of coffee lovers who have made Mongusta their favorite spot in Amsterdam"
testimonials={[
{
id: "1",
name: "Sophie van der Berg, Amsterdam Local",
date: "Date: 15 January 2025",
title: "Best coffee in the city",
quote: "I come to Mongusta almost every day. The quality is unmatched and the atmosphere is so welcoming. This is where coffee meets community.",
tag: "Regular",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766163678723-295psgl3.jpg"
},
{
id: "2",
name: "Marco Rossi, Entrepreneur",
date: "Date: 10 January 2025",
title: "Perfect workspace",
quote: "As a freelancer, I need a good workspace with excellent coffee. Mongusta delivers on both fronts. The wifi is reliable and the team is incredibly friendly.",
tag: "Frequent Visitor",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140063369-vzpeyskp.jpg"
},
{
id: "3",
name: "Emma Johnson, Designer",
date: "Date: 8 January 2025",
title: "Inspiring place",
quote: "Mongusta inspires creativity. The minimalist design, quality coffee, and creative energy make it my favorite place to brainstorm and work on projects.",
tag: "Creative",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766321576736-ix2lum2h.jpg"
},
{
id: "4",
name: "Jan de Wit, Coffee Connoisseur",
date: "Date: 5 January 2025",
title: "Exceptional quality",
quote: "Finally, a coffee shop that respects the craft. The single-origin selections are outstanding, and the baristas really know their stuff.",
tag: "Enthusiast",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766320181151-p24uxfcb.jpg"
}
]}
textboxLayout="default"
useInvertedBackground="noInvert"
/>
<div className="py-20 px-4 bg-background">
<div className="max-w-6xl mx-auto">
<div className="text-center mb-12">
<h2 className="text-3xl font-bold text-foreground mb-4">What Our Guests Say</h2>
<p className="text-lg text-foreground/70">
Join hundreds of coffee lovers who have made Mongusta their favorite spot in Amsterdam
</p>
</div>
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
<div className="card rounded p-6">
<div className="flex items-center mb-4">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766163678723-295psgl3.jpg" alt="Sophie van der Berg" className="w-12 h-12 rounded-full mr-4 object-cover" />
<div>
<h4 className="font-semibold text-foreground">Sophie van der Berg</h4>
<p className="text-sm text-foreground/70">Amsterdam Local</p>
</div>
</div>
<p className="text-foreground/70 text-sm">
"I come to Mongusta almost every day. The quality is unmatched and the atmosphere is so welcoming. This is where coffee meets community."
</p>
</div>
<div className="card rounded p-6">
<div className="flex items-center mb-4">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140063369-vzpeyskp.jpg" alt="Marco Rossi" className="w-12 h-12 rounded-full mr-4 object-cover" />
<div>
<h4 className="font-semibold text-foreground">Marco Rossi</h4>
<p className="text-sm text-foreground/70">Entrepreneur</p>
</div>
</div>
<p className="text-foreground/70 text-sm">
"As a freelancer, I need a good workspace with excellent coffee. Mongusta delivers on both fronts. The wifi is reliable and the team is incredibly friendly."
</p>
</div>
<div className="card rounded p-6">
<div className="flex items-center mb-4">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766321576736-ix2lum2h.jpg" alt="Emma Johnson" className="w-12 h-12 rounded-full mr-4 object-cover" />
<div>
<h4 className="font-semibold text-foreground">Emma Johnson</h4>
<p className="text-sm text-foreground/70">Designer</p>
</div>
</div>
<p className="text-foreground/70 text-sm">
"Mongusta inspires creativity. The minimalist design, quality coffee, and creative energy make it my favorite place to brainstorm and work on projects."
</p>
</div>
<div className="card rounded p-6">
<div className="flex items-center mb-4">
<img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766320181151-p24uxfcb.jpg" alt="Jan de Wit" className="w-12 h-12 rounded-full mr-4 object-cover" />
<div>
<h4 className="font-semibold text-foreground">Jan de Wit</h4>
<p className="text-sm text-foreground/70">Coffee Connoisseur</p>
</div>
</div>
<p className="text-foreground/70 text-sm">
"Finally, a coffee shop that respects the craft. The single-origin selections are outstanding, and the baristas really know their stuff."
</p>
</div>
</div>
</div>
</div>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to experience exceptional coffee? Visit Mongusta or get in touch. We are located in the heart of Amsterdam, open 7 days a week."
animationType="entrance-slide"
buttons={[
{ text: "Contact Us", href: "#" },
{ text: "Find Us", href: "#" }
]}
useInvertedBackground="noInvert"
/>
<div className="py-20 px-4 bg-background">
<div className="max-w-4xl mx-auto text-center">
<p className="text-xl text-foreground/70 mb-8">
Ready to experience exceptional coffee? Visit Mongusta or get in touch. We are located in the heart of Amsterdam, open 7 days a week.
</p>
<div className="flex gap-4 justify-center">
<button className="px-6 py-3 bg-primary-cta text-white rounded hover:opacity-90 transition-opacity">
Contact Us
</button>
<button className="px-6 py-3 border border-border rounded hover:bg-accent transition-colors">
Find Us
</button>
</div>
</div>
</div>
</div>
<div id="footer" data-section="footer">
<FooterSocial
logoText="Mongusta"
copyrightText="© Mongusta Coffee Shop, Amsterdam 2025"
columns={[
{
title: "Shop",
items: [
{ label: "Menu", href: "menu" },
{ label: "Coffee Beans", href: "#" }
]
},
{
title: "Company",
items: [
{ label: "About Us", href: "about" },
{ label: "Contact", href: "contact" }
]
},
{
title: "Info",
items: [
{ label: "Hours", href: "#" },
{ label: "Location", href: "#" }
]
}
]}
socialLinks={[
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" }
]}
/>
<div className="py-12 px-4 bg-background border-t border-border">
<div className="max-w-6xl mx-auto">
<div className="grid md:grid-cols-4 gap-8 mb-8">
<div>
<h3 className="text-xl font-bold text-foreground mb-4">Mongusta</h3>
<p className="text-foreground/70">Premium specialty coffee in Amsterdam</p>
</div>
<div>
<h4 className="font-semibold text-foreground mb-4">Shop</h4>
<ul className="space-y-2">
<li><a href="#menu" className="text-foreground/70 hover:text-foreground transition-colors">Menu</a></li>
<li><a href="#" className="text-foreground/70 hover:text-foreground transition-colors">Coffee Beans</a></li>
</ul>
</div>
<div>
<h4 className="font-semibold text-foreground mb-4">Company</h4>
<ul className="space-y-2">
<li><a href="#about" className="text-foreground/70 hover:text-foreground transition-colors">About Us</a></li>
<li><a href="#contact" className="text-foreground/70 hover:text-foreground transition-colors">Contact</a></li>
</ul>
</div>
<div>
<h4 className="font-semibold text-foreground mb-4">Info</h4>
<ul className="space-y-2">
<li><a href="#" className="text-foreground/70 hover:text-foreground transition-colors">Hours</a></li>
<li><a href="#" className="text-foreground/70 hover:text-foreground transition-colors">Location</a></li>
</ul>
</div>
</div>
<div className="flex justify-between items-center pt-8 border-t border-border">
<p className="text-foreground/70">© Mongusta Coffee Shop, Amsterdam 2025</p>
<div className="flex gap-4">
<a href="https://instagram.com" className="text-foreground/70 hover:text-foreground transition-colors" aria-label="Instagram">
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/>
</svg>
</a>
<a href="https://facebook.com" className="text-foreground/70 hover:text-foreground transition-colors" aria-label="Facebook">
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</ThemeProvider>
);