Update src/app/page.tsx

This commit is contained in:
2026-06-03 14:19:42 +00:00
parent b9c02e0b6e
commit 1664780b27

View File

@@ -11,13 +11,13 @@ import Link from 'next/link';
export default function HomePage() {
const navItems = [
{ href: "/", label: "Home" },
{ href: "/menu", label: "Menu" },
{ href: "/about", label: "About Us" },
{ href: "/gallery", label: "Gallery" },
{ href: "/reviews", label: "Reviews" },
{ href: "/contact", label: "Contact" },
{ href: "/reservations", label: "Reserve" }
{ id: "/", name: "Home" },
{ id: "/menu", name: "Menu" },
{ id: "/about", name: "About Us" },
{ id: "/gallery", name: "Gallery" },
{ id: "/reviews", name: "Reviews" },
{ id: "/contact", name: "Contact" },
{ id: "/reservations", name: "Reserve" }
];
return (
@@ -55,16 +55,12 @@ export default function HomePage() {
]}
enableKpiAnimation={true}
tag="Welcome to Moonlight Café"
buttons={[
{ text: "View Our Menu", href: "/menu" },
{ text: "Make a Reservation", href: "/reservations" }
]}
tagAnimation="expand-hover"
buttonAnimation="expand-hover"
imageSrc="http://img.b2bpic.net/free-photo/top-view-round-delicious-pie-with-strawberries-waffles-cup-tea-light-blue-surface_140725-66681.jpg"
imageAlt="Cozy Moonlight Café Interior"
mediaAnimation="slide-up"
useInvertedBackground={false}
tagAnimation="entrance-slide"
buttonAnimation="entrance-slide"
/>
</div>
<div id="about-intro" data-section="about-intro">
@@ -75,7 +71,7 @@ export default function HomePage() {
{ text: "Discover Our Story", href: "/about" }
]}
useInvertedBackground={true}
buttonAnimation="entrance-slide"
buttonAnimation="expand-hover"
/>
</div>
<div id="menu-highlights" data-section="menu-highlights">
@@ -86,9 +82,9 @@ export default function HomePage() {
{ id: "product-1", brand: "Moonlight Coffee", name: "Velvet Latte", price: "$5.50", rating: 5, reviewCount: "120 reviews", imageSrc: "http://img.b2bpic.net/free-photo/close-up-female-hands-holding-coffee-cup_1262-4784.jpg", imageAlt: "Velvet Latte" },
{ id: "product-2", brand: "Moonlight Bakery", name: "Flaky Croissant", price: "$4.00", rating: 5, reviewCount: "95 reviews", imageSrc: "http://img.b2bpic.net/free-photo/fresh-croissants-with-fragrant-tea-grey-surface_114579-82913.jpg", imageAlt: "Flaky Croissant" },
{ id: "product-3", brand: "Moonlight Kitchen", name: "Gourmet Club Sandwich", price: "$12.00", rating: 4, reviewCount: "80 reviews", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-ham-sandwiches-with-french-fries-dark-surface_179666-35076.jpg", imageAlt: "Gourmet Club Sandwich" },
{ id: "product-4", brand: "Moonlight Coffee", name: "Iced Vanilla Bean Latte", price: "$6.00", rating: 5, reviewCount: "110 reviews", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-cup-cappuccino-with-white-heart-pattern-wooden-table_181624-9618.jpg?_wi=1", imageAlt: "Iced Vanilla Bean Latte" },
{ id: "product-5", brand: "Moonlight Bakery", name: "Lemon Blueberry Muffin", price: "$4.50", rating: 4, reviewCount: "70 reviews", imageSrc: "http://img.b2bpic.net/free-photo/coffee-pot-near-leaves-snacks_23-2147885862.jpg?_wi=1", imageAlt: "Lemon Blueberry Muffin" },
{ id: "product-6", brand: "Moonlight Kitchen", name: "Caprese Salad", price: "$10.50", rating: 5, reviewCount: "65 reviews", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-herbs-mayonnaise_140725-6377.jpg?_wi=1", imageAlt: "Caprese Salad" }
{ id: "product-4", brand: "Moonlight Coffee", name: "Iced Vanilla Bean Latte", price: "$6.00", rating: 5, reviewCount: "110 reviews", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-cup-cappuccino-with-white-heart-pattern-wooden-table_181624-9618.jpg", imageAlt: "Iced Vanilla Bean Latte" },
{ id: "product-5", brand: "Moonlight Bakery", name: "Lemon Blueberry Muffin", price: "$4.50", rating: 4, reviewCount: "70 reviews", imageSrc: "http://img.b2bpic.net/free-photo/coffee-pot-near-leaves-snacks_23-2147885862.jpg", imageAlt: "Lemon Blueberry Muffin" },
{ id: "product-6", brand: "Moonlight Kitchen", name: "Caprese Salad", price: "$10.50", rating: 5, reviewCount: "65 reviews", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-herbs-mayonnaise_140725-6377.jpg", imageAlt: "Caprese Salad" }
]}
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
@@ -97,7 +93,7 @@ export default function HomePage() {
buttons={[
{ text: "View Full Menu", href: "/menu" }
]}
buttonAnimation="entrance-slide"
buttonAnimation="expand-hover"
/>
</div>
<div id="social-proof" data-section="social-proof">
@@ -128,7 +124,7 @@ export default function HomePage() {
buttons={[
{ text: "Read All Reviews", href: "/reviews" }
]}
buttonAnimation="entrance-slide"
buttonAnimation="expand-hover"
/>
</div>
<div id="footer" data-section="footer">
@@ -138,7 +134,6 @@ export default function HomePage() {
rightLink={{ text: "Terms of Service", href: "#" }}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=w5b2ln"
logoAlt="Moonlight Café Logo"
useInvertedBackground={true}
/>
</div>
</ThemeProvider>