Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-27 05:04:59 +00:00
2 changed files with 64 additions and 4 deletions

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

@@ -0,0 +1,60 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="compact"
sizing="mediumLargeSizeMediumTitles"
background="fluid"
cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "#menu" },
{ name: "Directions", id: "/#location" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Esthetic Cafe"
button={{ text: "Home", href: "/" }}
/>
<div id="menu" className="pt-32 pb-20">
<ProductCardTwo
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
title="Full Cafe Menu"
description="Our open book menu, curated with love."
products={[
{ id: "p1", brand: "Coffee", name: "Gourmet Cappuccino", price: "₹150", rating: 5, reviewCount: "50+", imageSrc: "http://img.b2bpic.net/free-photo/easter-coffee-decorations-still-life_23-2150244073.jpg" },
{ id: "p2", brand: "Bakery", name: "Butter Croissant", price: "₹120", rating: 5, reviewCount: "30+", imageSrc: "http://img.b2bpic.net/free-photo/cup-milky-cappuccino-with-cookie-blue-table_114579-4248.jpg" },
{ id: "p3", brand: "Drinks", name: "Berry Blast Smoothie", price: "₹180", rating: 5, reviewCount: "40+", imageSrc: "http://img.b2bpic.net/free-photo/female-blogger-recreats-summer-vacations-cozy-restaurant-texts-message-followers-personal-website_273609-3090.jpg" },
]}
/>
</div>
<FooterBaseCard
logoText="Esthetic Cafe"
columns={[
{ title: "Hours", items: [{ label: "Daily: 11 AM - 10 PM", href: "#" }] },
{ title: "Links", items: [{ label: "Instagram", href: "#" }, { label: "Order Online", href: "/menu" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -31,7 +31,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "hero" },
{ name: "Menu", id: "menu" },
{ name: "Menu", id: "/menu" },
{ name: "Directions", id: "location" },
{ name: "Contact", id: "contact" },
]}
@@ -53,7 +53,7 @@ export default function LandingPage() {
enableKpiAnimation={true}
buttons={[
{ text: "Get Directions", href: "#location" },
{ text: "Order Now", href: "#menu" },
{ text: "Order Now", href: "/menu" },
{ text: "Call Now", href: "tel:+919999999999" },
]}
imageSrc="http://img.b2bpic.net/free-photo/happy-young-woman-welcoming-female-customer-restaurant_23-2147936253.jpg?_wi=1"
@@ -139,11 +139,11 @@ export default function LandingPage() {
logoText="Esthetic Cafe"
columns={[
{ title: "Hours", items: [{ label: "Daily: 11 AM - 10 PM", href: "#" }] },
{ title: "Links", items: [{ label: "Instagram", href: "#" }, { label: "Order Online", href: "#" }] },
{ title: "Links", items: [{ label: "Instagram", href: "#" }, { label: "Order Online", href: "/menu" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}