Update src/app/page.tsx

This commit is contained in:
2025-12-25 16:22:21 +00:00
parent 674a6cf9a2
commit d4b3f3f3fb

View File

@@ -1,14 +1,10 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; import { Card } from "@/components/ui/card";
import HeroBillboardMetrics from '@/components/sections/hero/HeroBillboardMetrics'; import { Button } from "@/components/ui/button";
import SplitAbout from '@/components/sections/about/SplitAbout'; import { Badge } from "@/components/ui/badge";
import FeatureCardFifteen from '@/components/sections/feature/FeatureCardFifteen'; import { Avatar, AvatarImage, AvatarFallback } from "@/components/ui/avatar";
import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Leaf, Zap, Star, Heart, MapPin } from 'lucide-react'; import { Leaf, Zap, Star, Heart, MapPin } from 'lucide-react';
export default function CoffeePage() { export default function CoffeePage() {
@@ -26,299 +22,399 @@ export default function CoffeePage() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleMinimal <nav className="sticky top-0 z-50 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
brandName="Gloria" <div className="container mx-auto px-4">
button={{ <div className="flex h-16 items-center justify-between">
text: "Book a Table", <div className="flex items-center space-x-4">
href: "#contact" <h1 className="text-xl font-bold">Gloria</h1>
}} </div>
/> <Button variant="default" asChild>
<a href="#contact">Book a Table</a>
</Button>
</div>
</div>
</nav>
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardMetrics <section className="py-24 px-4">
title="Welcome to Gloria Coffee" <div className="container mx-auto">
description="Experience the finest specialty coffee in a warm, inviting atmosphere. From our carefully sourced beans to expertly crafted beverages, every cup tells a story." <div className="grid lg:grid-cols-2 gap-12 items-center">
tag="Specialty Coffee House" <div className="space-y-8">
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766573457718-zh216nxd.jpg" <Badge variant="secondary">Specialty Coffee House</Badge>
imageAlt="Gloria Coffee House" <h1 className="text-5xl font-bold leading-tight">Welcome to Gloria Coffee</h1>
frameStyle="card" <p className="text-xl text-muted-foreground">Experience the finest specialty coffee in a warm, inviting atmosphere. From our carefully sourced beans to expertly crafted beverages, every cup tells a story.</p>
metricsLabel="Trusted by coffee lovers and professionals worldwide" <div className="flex gap-4">
metrics={[ <Button size="lg" asChild>
{ <a href="#products">Explore Menu</a>
id: "1", </Button>
value: "15+", <Button size="lg" variant="outline" asChild>
label: "Years of Excellence" <a href="#contact">Visit Us</a>
}, </Button>
{ </div>
id: "2", <div className="grid grid-cols-3 gap-8 pt-8">
value: "1000+", <div className="text-center">
label: "Happy Customers Daily" <div className="text-3xl font-bold">15+</div>
}, <div className="text-sm text-muted-foreground">Years of Excellence</div>
{ </div>
id: "3", <div className="text-center">
value: "50+", <div className="text-3xl font-bold">1000+</div>
label: "Premium Coffee Blends" <div className="text-sm text-muted-foreground">Happy Customers Daily</div>
} </div>
]} <div className="text-center">
buttons={[ <div className="text-3xl font-bold">50+</div>
{ <div className="text-sm text-muted-foreground">Premium Coffee Blends</div>
text: "Explore Menu", </div>
href: "#products" </div>
}, </div>
{ <div className="relative">
text: "Visit Us", <Card className="overflow-hidden">
href: "#contact" <img
} src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766573457718-zh216nxd.jpg"
]} alt="Gloria Coffee House"
/> className="w-full h-96 object-cover"
/>
</Card>
</div>
</div>
</div>
</section>
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<SplitAbout <section className="py-24 px-4">
title="Our Story" <div className="container mx-auto">
description="Gloria Coffee was founded with a simple passion: to bring the world's finest coffees to your cup. We believe every sip should be a moment of joy and connection." <div className="grid lg:grid-cols-2 gap-12 items-center">
imagePosition="right" <div className="space-y-8">
textboxLayout="default" <h2 className="text-4xl font-bold">Our Story</h2>
useInvertedBackground="noInvert" <p className="text-lg text-muted-foreground">Gloria Coffee was founded with a simple passion: to bring the world's finest coffees to your cup. We believe every sip should be a moment of joy and connection.</p>
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766504475843-rx4nokgi.jpg" <div className="space-y-6">
imageAlt="Gloria Coffee Interior" <div className="flex gap-4">
bulletPoints={[ <div className="flex-shrink-0">
{ <div className="w-12 h-12 bg-primary/10 rounded-lg flex items-center justify-center">
title: "Ethically Sourced", <Leaf className="w-6 h-6 text-primary" />
description: "We partner directly with sustainable coffee farms around the world", </div>
icon: Leaf </div>
}, <div>
{ <h3 className="font-semibold mb-2">Ethically Sourced</h3>
title: "Expert Baristas", <p className="text-muted-foreground">We partner directly with sustainable coffee farms around the world</p>
description: "Our trained professionals craft each drink with precision and care", </div>
icon: Zap </div>
}, <div className="flex gap-4">
{ <div className="flex-shrink-0">
title: "Premium Quality", <div className="w-12 h-12 bg-primary/10 rounded-lg flex items-center justify-center">
description: "Only the finest beans and ingredients make it to your cup", <Zap className="w-6 h-6 text-primary" />
icon: Star </div>
}, </div>
{ <div>
title: "Community Focus", <h3 className="font-semibold mb-2">Expert Baristas</h3>
description: "More than coffee - we're a gathering place for meaningful moments", <p className="text-muted-foreground">Our trained professionals craft each drink with precision and care</p>
icon: Heart </div>
} </div>
]} <div className="flex gap-4">
/> <div className="flex-shrink-0">
<div className="w-12 h-12 bg-primary/10 rounded-lg flex items-center justify-center">
<Star className="w-6 h-6 text-primary" />
</div>
</div>
<div>
<h3 className="font-semibold mb-2">Premium Quality</h3>
<p className="text-muted-foreground">Only the finest beans and ingredients make it to your cup</p>
</div>
</div>
<div className="flex gap-4">
<div className="flex-shrink-0">
<div className="w-12 h-12 bg-primary/10 rounded-lg flex items-center justify-center">
<Heart className="w-6 h-6 text-primary" />
</div>
</div>
<div>
<h3 className="font-semibold mb-2">Community Focus</h3>
<p className="text-muted-foreground">More than coffee - we're a gathering place for meaningful moments</p>
</div>
</div>
</div>
</div>
<div className="relative">
<Card className="overflow-hidden">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766504475843-rx4nokgi.jpg"
alt="Gloria Coffee Interior"
className="w-full h-96 object-cover"
/>
</Card>
</div>
</div>
</div>
</section>
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardFifteen <section className="py-24 px-4">
title="Our Specialty Drinks" <div className="container mx-auto">
description="Handcrafted beverages that elevate your coffee experience" <div className="text-center mb-16">
tag="Signature Selection" <Badge variant="secondary" className="mb-4">Signature Selection</Badge>
features={[ <h2 className="text-4xl font-bold mb-4">Our Specialty Drinks</h2>
{ <p className="text-xl text-muted-foreground max-w-2xl mx-auto">Handcrafted beverages that elevate your coffee experience</p>
id: "1", </div>
title: "Caramel Macchiato", <div className="grid md:grid-cols-3 gap-8">
description: "Espresso with steamed milk and signature caramel drizzle", <Card className="overflow-hidden">
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414392169-w4l2sncs.jpg", <img
imageAlt: "Caramel Macchiato" src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414392169-w4l2sncs.jpg"
}, alt="Caramel Macchiato"
{ className="w-full h-48 object-cover"
id: "2", />
title: "Single Origin Espresso", <div className="p-6">
description: "Pure, bold, and perfectly extracted from premium beans", <h3 className="font-semibold text-lg mb-2">Caramel Macchiato</h3>
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414395178-77w1rchc.jpg", <p className="text-muted-foreground">Espresso with steamed milk and signature caramel drizzle</p>
imageAlt: "Single Origin Espresso" </div>
}, </Card>
{ <Card className="overflow-hidden">
id: "3", <img
title: "Iced Vanilla Latte", src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414395178-77w1rchc.jpg"
description: "Smooth, refreshing, and perfect for warm days", alt="Single Origin Espresso"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414393098-5j3dbjps.jpg", className="w-full h-48 object-cover"
imageAlt: "Iced Vanilla Latte" />
} <div className="p-6">
]} <h3 className="font-semibold text-lg mb-2">Single Origin Espresso</h3>
animationType="slide-up" <p className="text-muted-foreground">Pure, bold, and perfectly extracted from premium beans</p>
textboxLayout="default" </div>
useInvertedBackground="noInvert" </Card>
/> <Card className="overflow-hidden">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414393098-5j3dbjps.jpg"
alt="Iced Vanilla Latte"
className="w-full h-48 object-cover"
/>
<div className="p-6">
<h3 className="font-semibold text-lg mb-2">Iced Vanilla Latte</h3>
<p className="text-muted-foreground">Smooth, refreshing, and perfect for warm days</p>
</div>
</Card>
</div>
</div>
</section>
</div> </div>
<div id="products" data-section="products"> <div id="products" data-section="products">
<ProductCardSeven <section className="py-24 px-4">
title="Featured Menu Items" <div className="container mx-auto">
description="Discover our most loved offerings" <div className="text-center mb-16">
tag="Must Try" <Badge variant="secondary" className="mb-4">Must Try</Badge>
products={[ <h2 className="text-4xl font-bold mb-4">Featured Menu Items</h2>
{ <p className="text-xl text-muted-foreground max-w-2xl mx-auto">Discover our most loved offerings</p>
id: "1", </div>
name: "Morning Croissant", <div className="grid md:grid-cols-3 gap-8">
price: "$5.99", <Card className="overflow-hidden">
rating: 4.8, <img
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766573458620-djq2znw8.jpg", src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766573458620-djq2znw8.jpg"
imageAlt: "Butter Croissant" alt="Butter Croissant"
}, className="w-full h-48 object-cover"
{ />
id: "2", <div className="p-6">
name: "Caprese Sandwich", <div className="flex items-center justify-between mb-2">
price: "$9.99", <h3 className="font-semibold text-lg">Morning Croissant</h3>
rating: 4.9, <div className="flex items-center gap-1">
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414396263-ecaeakat.jpg", <Star className="w-4 h-4 fill-yellow-400 text-yellow-400" />
imageAlt: "Fresh Caprese Sandwich" <span className="text-sm">4.8</span>
}, </div>
{ </div>
id: "3", <div className="text-2xl font-bold text-primary">$5.99</div>
name: "Chocolate Cake", </div>
price: "$6.99", </Card>
rating: 4.7, <Card className="overflow-hidden">
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766573460458-6fck1vod.jpg", <img
imageAlt: "Rich Chocolate Cake" src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766414396263-ecaeakat.jpg"
} alt="Fresh Caprese Sandwich"
]} className="w-full h-48 object-cover"
gridVariant="uniform-all-items-equal" />
animationType="slide-up" <div className="p-6">
textboxLayout="default" <div className="flex items-center justify-between mb-2">
useInvertedBackground="noInvert" <h3 className="font-semibold text-lg">Caprese Sandwich</h3>
carouselMode="buttons" <div className="flex items-center gap-1">
/> <Star className="w-4 h-4 fill-yellow-400 text-yellow-400" />
<span className="text-sm">4.9</span>
</div>
</div>
<div className="text-2xl font-bold text-primary">$9.99</div>
</div>
</Card>
<Card className="overflow-hidden">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766573460458-6fck1vod.jpg"
alt="Rich Chocolate Cake"
className="w-full h-48 object-cover"
/>
<div className="p-6">
<div className="flex items-center justify-between mb-2">
<h3 className="font-semibold text-lg">Chocolate Cake</h3>
<div className="flex items-center gap-1">
<Star className="w-4 h-4 fill-yellow-400 text-yellow-400" />
<span className="text-sm">4.7</span>
</div>
</div>
<div className="text-2xl font-bold text-primary">$6.99</div>
</div>
</Card>
</div>
</div>
</section>
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardNine <section className="py-24 px-4">
title="What Our Customers Say" <div className="container mx-auto">
description="Join thousands who've made Gloria their favorite coffeehouse" <div className="text-center mb-16">
textboxLayout="default" <h2 className="text-4xl font-bold mb-4">What Our Customers Say</h2>
useInvertedBackground="noInvert" <p className="text-xl text-muted-foreground max-w-2xl mx-auto">Join thousands who've made Gloria their favorite coffeehouse</p>
testimonials={[ </div>
{ <div className="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
id: "1", <Card className="p-6">
quote: "The best espresso I've had outside of Italy. Every barista knows how to perfect each drink.", <div className="flex items-center gap-3 mb-4">
name: "Maria Rodriguez", <Avatar>
role: "Regular Customer", <AvatarImage src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766679215769-8spgigse.jpg" alt="Maria Rodriguez" />
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766679215769-8spgigse.jpg", <AvatarFallback>MR</AvatarFallback>
imageAlt: "Maria Rodriguez" </Avatar>
}, <div>
{ <div className="font-semibold">Maria Rodriguez</div>
id: "2", <div className="text-sm text-muted-foreground">Regular Customer</div>
quote: "Gloria is my creative sanctuary. Great coffee, peaceful ambiance, and amazing staff.", </div>
name: "James Chen", </div>
role: "Freelancer", <p className="text-muted-foreground">"The best espresso I've had outside of Italy. Every barista knows how to perfect each drink."</p>
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508653705-qp2xy5s6.jpg", </Card>
imageAlt: "James Chen" <Card className="p-6">
}, <div className="flex items-center gap-3 mb-4">
{ <Avatar>
id: "3", <AvatarImage src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508653705-qp2xy5s6.jpg" alt="James Chen" />
quote: "I bring all my clients here for meetings. The atmosphere and quality coffee make the perfect impression.", <AvatarFallback>JC</AvatarFallback>
name: "Sarah Thompson", </Avatar>
role: "Business Owner", <div>
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766679217178-y1zjo42n.jpg", <div className="font-semibold">James Chen</div>
imageAlt: "Sarah Thompson" <div className="text-sm text-muted-foreground">Freelancer</div>
}, </div>
{ </div>
id: "4", <p className="text-muted-foreground">"Gloria is my creative sanctuary. Great coffee, peaceful ambiance, and amazing staff."</p>
quote: "The team remembers my order and always greets me with a smile. That's customer service done right.", </Card>
name: "Michael Park", <Card className="p-6">
role: "Morning Regular", <div className="flex items-center gap-3 mb-4">
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766679218140-bhsns38m.jpg", <Avatar>
imageAlt: "Michael Park" <AvatarImage src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766679217178-y1zjo42n.jpg" alt="Sarah Thompson" />
} <AvatarFallback>ST</AvatarFallback>
]} </Avatar>
/> <div>
<div className="font-semibold">Sarah Thompson</div>
<div className="text-sm text-muted-foreground">Business Owner</div>
</div>
</div>
<p className="text-muted-foreground">"I bring all my clients here for meetings. The atmosphere and quality coffee make the perfect impression."</p>
</Card>
<Card className="p-6">
<div className="flex items-center gap-3 mb-4">
<Avatar>
<AvatarImage src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766679218140-bhsns38m.jpg" alt="Michael Park" />
<AvatarFallback>MP</AvatarFallback>
</Avatar>
<div>
<div className="font-semibold">Michael Park</div>
<div className="text-sm text-muted-foreground">Morning Regular</div>
</div>
</div>
<p className="text-muted-foreground">"The team remembers my order and always greets me with a smile. That's customer service done right."</p>
</Card>
</div>
</div>
</section>
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactFaq <section className="py-24 px-4">
ctaTitle="Visit Gloria Coffee" <div className="container mx-auto">
ctaDescription="Join us for your next coffee break. We're open seven days a week." <div className="grid lg:grid-cols-2 gap-12">
ctaButton={{ <div className="space-y-8">
text: "Get Directions", <div className="flex items-center gap-3 mb-4">
href: "https://maps.google.com" <div className="w-12 h-12 bg-primary/10 rounded-lg flex items-center justify-center">
}} <MapPin className="w-6 h-6 text-primary" />
ctaIcon={MapPin} </div>
useInvertedBackground="noInvert" <div>
animationType="slide-up" <h2 className="text-3xl font-bold">Visit Gloria Coffee</h2>
accordionAnimationType="smooth" </div>
showCard={true} </div>
faqs={[ <p className="text-lg text-muted-foreground">Join us for your next coffee break. We're open seven days a week.</p>
{ <Button size="lg" asChild>
id: "1", <a href="https://maps.google.com">Get Directions</a>
title: "What are your opening hours?", </Button>
content: "Monday - Friday: 6:00 AM - 8:00 PM. Saturday - Sunday: 8:00 AM - 9:00 PM. We're closed on major holidays." </div>
}, <Card className="p-6">
{ <div className="space-y-6">
id: "2", <div>
title: "Do you offer WiFi?", <h3 className="font-semibold mb-3">What are your opening hours?</h3>
content: "Yes, free WiFi is available to all customers. Password is displayed at the counter." <p className="text-muted-foreground">Monday - Friday: 6:00 AM - 8:00 PM. Saturday - Sunday: 8:00 AM - 9:00 PM. We're closed on major holidays.</p>
}, </div>
{ <div>
id: "3", <h3 className="font-semibold mb-3">Do you offer WiFi?</h3>
title: "Can I reserve a table?", <p className="text-muted-foreground">Yes, free WiFi is available to all customers. Password is displayed at the counter.</p>
content: "For groups of 6 or more, we recommend calling ahead at (555) 123-4567 to reserve seating." </div>
}, <div>
{ <h3 className="font-semibold mb-3">Can I reserve a table?</h3>
id: "4", <p className="text-muted-foreground">For groups of 6 or more, we recommend calling ahead at (555) 123-4567 to reserve seating.</p>
title: "Do you have vegan options?", </div>
content: "Absolutely! We offer plant-based milk alternatives and vegan pastries. Ask our baristas for recommendations." <div>
} <h3 className="font-semibold mb-3">Do you have vegan options?</h3>
]} <p className="text-muted-foreground">Absolutely! We offer plant-based milk alternatives and vegan pastries. Ask our baristas for recommendations.</p>
/> </div>
</div>
</Card>
</div>
</div>
</section>
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterMedia <footer className="bg-card py-16">
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766565658398-rzdk67xj.jpg" <div className="container mx-auto px-4">
imageAlt="Premium Coffee Beans" <div className="grid lg:grid-cols-2 gap-12 mb-12">
logoText="Gloria" <div className="space-y-6">
copyrightText="© 2025 Gloria Coffee. All rights reserved." <img
columns={[ src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766565658398-rzdk67xj.jpg"
{ alt="Premium Coffee Beans"
title: "Hours", className="w-full h-64 object-cover rounded-lg"
items: [ />
{ </div>
label: "Monday - Friday: 6 AM - 8 PM" <div className="grid md:grid-cols-3 gap-8">
}, <div>
{ <h3 className="font-semibold mb-4">Hours</h3>
label: "Saturday - Sunday: 8 AM - 9 PM" <div className="space-y-2 text-muted-foreground">
}, <div>Monday - Friday: 6 AM - 8 PM</div>
{ <div>Saturday - Sunday: 8 AM - 9 PM</div>
label: "Contact: (555) 123-4567" <div>Contact: (555) 123-4567</div>
} </div>
] </div>
}, <div>
{ <h3 className="font-semibold mb-4">Location</h3>
title: "Location", <div className="space-y-2 text-muted-foreground">
items: [ <a href="https://maps.google.com" className="block hover:text-primary">123 Coffee Street</a>
{ <a href="https://maps.google.com" className="block hover:text-primary">Downtown District</a>
label: "123 Coffee Street", <a href="https://maps.google.com" className="block hover:text-primary">Get Directions</a>
href: "https://maps.google.com" </div>
}, </div>
{ <div>
label: "Downtown District", <h3 className="font-semibold mb-4">Follow Us</h3>
href: "https://maps.google.com" <div className="space-y-2 text-muted-foreground">
}, <a href="https://instagram.com" className="block hover:text-primary">Instagram</a>
{ <a href="https://facebook.com" className="block hover:text-primary">Facebook</a>
label: "Get Directions", <a href="#contact" className="block hover:text-primary">Contact Us</a>
href: "https://maps.google.com" </div>
} </div>
] </div>
}, </div>
{ <div className="border-t pt-8">
title: "Follow Us", <div className="flex items-center justify-between">
items: [ <div className="text-xl font-bold">Gloria</div>
{ <div className="text-muted-foreground">© 2025 Gloria Coffee. All rights reserved.</div>
label: "Instagram", </div>
href: "https://instagram.com" </div>
}, </div>
{ </footer>
label: "Facebook",
href: "https://facebook.com"
},
{
label: "Contact Us",
href: "#contact"
}
]
}
]}
/>
</div> </div>
</ThemeProvider> </ThemeProvider>
); );