9 Commits

Author SHA1 Message Date
16b79f85e9 Merge version_3 into main
Merge version_3 into main
2026-03-03 05:27:51 +00:00
167c1b64f2 Update src/app/page.tsx 2026-03-03 05:27:46 +00:00
e3dff92b91 Merge version_2 into main
Merge version_2 into main
2026-03-03 05:27:12 +00:00
9c1961c62b Update src/app/page.tsx 2026-03-03 05:27:08 +00:00
a49938da21 Update src/app/menu/page.tsx 2026-03-03 05:27:08 +00:00
37c181ca04 Merge version_2 into main
Merge version_2 into main
2026-03-03 05:26:17 +00:00
aa1b29a210 Update src/app/page.tsx 2026-03-03 05:26:13 +00:00
449486eedd Add src/app/menu/page.tsx 2026-03-03 05:26:12 +00:00
19ae1248f3 Merge version_1 into main
Merge version_1 into main
2026-03-03 05:22:08 +00:00
2 changed files with 141 additions and 12 deletions

128
src/app/menu/page.tsx Normal file
View File

@@ -0,0 +1,128 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Sparkles, Clock } from 'lucide-react';
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="mediumSizeLargeTitles"
background="circleGradient"
cardStyle="gradient-radial"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Auri Coffee"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Menu", id: "/menu" },
{ name: "Gallery", id: "gallery" },
{ name: "Contact", id: "contact" }
]}
/>
</div>
<div id="menu" data-section="menu">
<ProductCardTwo
title="Complete Menu"
description="Explore our full range of handcrafted beverages, pastries, and specialty items"
tag="All Items"
tagIcon={Sparkles}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1", brand: "Auri Signature", name: "Espresso Macchiato", price: "Rp 35,000", rating: 5,
reviewCount: "892", imageSrc: "http://img.b2bpic.net/free-photo/latte-cup-coffee-with-cinnamon-sticks_141793-775.jpg?_wi=2", imageAlt: "Espresso macchiato with perfect proportions"
},
{
id: "2", brand: "Auri Signature", name: "Honey Latte", price: "Rp 45,000", rating: 5,
reviewCount: "756", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-composition_23-2148104773.jpg?_wi=2", imageAlt: "Smooth honey latte with natural sweetness"
},
{
id: "3", brand: "Auri Signature", name: "Cold Brew Nitro", price: "Rp 50,000", rating: 5,
reviewCount: "643", imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-coffee-rustic-table_23-2147693441.jpg?_wi=2", imageAlt: "Silky cold brew nitro coffee"
},
{
id: "4", brand: "Auri Signature", name: "Vanilla Cappuccino", price: "Rp 42,000", rating: 5,
reviewCount: "534", imageSrc: "http://img.b2bpic.net/free-photo/latte-cup-coffee-with-cinnamon-sticks_141793-775.jpg?_wi=3", imageAlt: "Creamy vanilla cappuccino"
},
{
id: "5", brand: "Auri Signature", name: "Iced Mocha", price: "Rp 48,000", rating: 5,
reviewCount: "612", imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-coffee-rustic-table_23-2147693441.jpg?_wi=3", imageAlt: "Refreshing iced mocha"
},
{
id: "6", brand: "Auri Signature", name: "Affogato", price: "Rp 40,000", rating: 5,
reviewCount: "423", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-composition_23-2148104773.jpg?_wi=3", imageAlt: "Classic affogato with gelato"
}
]}
buttons={[
{ text: "Back Home", href: "/" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Questions?"
title="Contact Us About Our Menu"
description="Have dietary restrictions or special requests? Get in touch with us to learn more about our menu options and customize your order."
tagIcon={Clock}
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/woman-drinking-hot-chocolate-cafe_23-2149944037.jpg?_wi=2"
imageAlt="Coffee moment at Auri"
mediaAnimation="opacity"
mediaPosition="right"
inputPlaceholder="Enter your email address"
buttonText="Send Inquiry"
termsText="We'll get back to you within 24 hours with menu details and recommendations."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Auri Coffee"
columns={[
{
items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/#about" },
{ label: "Menu", href: "/menu" }
]
},
{
items: [
{ label: "Gallery", href: "/#gallery" },
{ label: "Contact", href: "/#contact" },
{ label: "Reservations", href: "/#contact" }
]
},
{
items: [
{ label: "Instagram", href: "https://instagram.com/auricoffee" },
{ label: "WhatsApp", href: "https://wa.me/62812345678" },
{ label: "Location", href: "#" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}

View File

@@ -10,6 +10,7 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Coffee, Sparkles, Leaf, MapPin, Heart, Clock } from 'lucide-react'; import { Coffee, Sparkles, Leaf, MapPin, Heart, Clock } from 'lucide-react';
import Link from 'next/link';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -29,9 +30,9 @@ export default function LandingPage() {
<NavbarStyleApple <NavbarStyleApple
brandName="Auri Coffee" brandName="Auri Coffee"
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "/" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Menu", id: "menu" }, { name: "Menu", id: "/menu" },
{ name: "Gallery", id: "gallery" }, { name: "Gallery", id: "gallery" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
@@ -62,7 +63,7 @@ export default function LandingPage() {
]} ]}
mediaAnimation="slide-up" mediaAnimation="slide-up"
buttons={[ buttons={[
{ text: "View Menu", href: "menu" }, { text: "View Menu", href: "/menu" },
{ text: "Reserve a Table", href: "contact" } { text: "Reserve a Table", href: "contact" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -97,19 +98,19 @@ export default function LandingPage() {
products={[ products={[
{ {
id: "1", brand: "Auri Signature", name: "Espresso Macchiato", price: "Rp 35,000", rating: 5, id: "1", brand: "Auri Signature", name: "Espresso Macchiato", price: "Rp 35,000", rating: 5,
reviewCount: "892", imageSrc: "http://img.b2bpic.net/free-photo/latte-cup-coffee-with-cinnamon-sticks_141793-775.jpg", imageAlt: "Espresso macchiato with perfect proportions" reviewCount: "892", imageSrc: "http://img.b2bpic.net/free-photo/latte-cup-coffee-with-cinnamon-sticks_141793-775.jpg?_wi=1", imageAlt: "Espresso macchiato with perfect proportions"
}, },
{ {
id: "2", brand: "Auri Signature", name: "Honey Latte", price: "Rp 45,000", rating: 5, id: "2", brand: "Auri Signature", name: "Honey Latte", price: "Rp 45,000", rating: 5,
reviewCount: "756", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-composition_23-2148104773.jpg", imageAlt: "Smooth honey latte with natural sweetness" reviewCount: "756", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-composition_23-2148104773.jpg?_wi=1", imageAlt: "Smooth honey latte with natural sweetness"
}, },
{ {
id: "3", brand: "Auri Signature", name: "Cold Brew Nitro", price: "Rp 50,000", rating: 5, id: "3", brand: "Auri Signature", name: "Cold Brew Nitro", price: "Rp 50,000", rating: 5,
reviewCount: "643", imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-coffee-rustic-table_23-2147693441.jpg", imageAlt: "Silky cold brew nitro coffee" reviewCount: "643", imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-coffee-rustic-table_23-2147693441.jpg?_wi=1", imageAlt: "Silky cold brew nitro coffee"
} }
]} ]}
buttons={[ buttons={[
{ text: "See Full Menu", href: "#" } { text: "See Full Menu", href: "/menu" }
]} ]}
/> />
</div> </div>
@@ -181,12 +182,12 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/woman-drinking-hot-chocolate-cafe_23-2149944037.jpg" imageSrc="http://img.b2bpic.net/free-photo/woman-drinking-hot-chocolate-cafe_23-2149944037.jpg?_wi=1"
imageAlt="Coffee moment at Auri" imageAlt="Coffee moment at Auri"
mediaAnimation="opacity" mediaAnimation="opacity"
mediaPosition="right" mediaPosition="right"
inputPlaceholder="Enter your email address" inputPlaceholder="Enter email to reserve"
buttonText="Send Message" buttonText="Reserve Now"
termsText="We respect your privacy and will only use your contact information to respond to your inquiry." termsText="We respect your privacy and will only use your contact information to respond to your inquiry."
/> />
</div> </div>
@@ -197,9 +198,9 @@ export default function LandingPage() {
columns={[ columns={[
{ {
items: [ items: [
{ label: "Home", href: "#hero" }, { label: "Home", href: "/" },
{ label: "About", href: "#about" }, { label: "About", href: "#about" },
{ label: "Menu", href: "#menu" } { label: "Menu", href: "/menu" }
] ]
}, },
{ {