15 Commits

Author SHA1 Message Date
6660277137 Update src/app/menu/page.tsx 2026-04-15 07:47:43 +00:00
1559ecb727 Update src/app/menu/page.tsx 2026-04-15 07:47:19 +00:00
b43d07fa56 Update src/app/menu/page.tsx 2026-04-15 07:46:49 +00:00
313dc743d4 Update src/app/menu/page.tsx 2026-04-15 07:46:21 +00:00
48b43cff33 Update src/app/menu/page.tsx 2026-04-15 07:45:53 +00:00
f58e73580d Merge version_3 into main
Merge version_3 into main
2026-04-15 07:41:10 +00:00
6d97ce5de5 Update src/app/menu/page.tsx 2026-04-15 07:41:07 +00:00
d4e093e5ce Merge version_3 into main
Merge version_3 into main
2026-04-15 07:40:37 +00:00
52717d5b9b Update src/app/menu/page.tsx 2026-04-15 07:40:34 +00:00
d6fdd82f99 Merge version_3 into main
Merge version_3 into main
2026-04-15 07:40:03 +00:00
3939f7601f Update src/app/page.tsx 2026-04-15 07:39:57 +00:00
d30dc2fea2 Add src/app/menu/page.tsx 2026-04-15 07:39:56 +00:00
afee7dc7c1 Merge version_2 into main
Merge version_2 into main
2026-04-15 07:37:25 +00:00
74f007c084 Update src/app/page.tsx 2026-04-15 07:37:21 +00:00
b656144b5e Merge version_1 into main
Merge version_1 into main
2026-04-15 07:32:05 +00:00
2 changed files with 87 additions and 6 deletions

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

@@ -0,0 +1,82 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="small"
sizing="mediumLargeSizeLargeTitles"
background="aurora"
cardStyle="layered-gradient"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/menu" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Hippopotoshi"
button={{ text: "Book Now", href: "/#contact" }}
/>
<div className="pt-32 pb-20">
<ProductCardTwo
title="Our Menu"
description="All prices in Thai Baht are subject to 10% service charge and 7% VAT."
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
products={[
{ id: "c1", brand: "Signature", name: "Uni Pie", price: "790", rating: 5, reviewCount: "120", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg?_wi=1" },
{ id: "c2", brand: "Main", name: "Beef Shabu Shabu", price: "720", rating: 5, reviewCount: "85", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg?_wi=2" },
{ id: "c3", brand: "Signature", name: "Blue Crab 2 Ways", price: "890", rating: 5, reviewCount: "45", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg?_wi=3" },
{ id: "c4", brand: "Starter", name: "Baked Wild Mushroom", price: "590", rating: 4, reviewCount: "92", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg?_wi=4" }
]}
/>
<div className="mt-16">
<ProductCardTwo
title="Recommended for You"
description="Selection of our finest dishes."
gridVariant="asymmetric-60-wide-40-narrow"
animationType="slide-up"
textboxLayout="default"
carouselMode="auto"
useInvertedBackground={true}
products={[
{ id: "rec1", brand: "Signature", name: "Signature Uni Pie", price: "790", rating: 5, reviewCount: "120", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg?_wi=5" },
{ id: "rec2", brand: "Main", name: "Beef Shabu Shabu", price: "720", rating: 5, reviewCount: "85", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg?_wi=6" },
{ id: "rec3", brand: "Signature", name: "Blue Crab 2 Ways", price: "890", rating: 5, reviewCount: "45", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg?_wi=7" }
]}
/>
</div>
</div>
<FooterBaseReveal
logoText="Hippopotoshi"
columns={[
{ title: "Navigate", items: [{ label: "Menu", href: "/menu" }, { label: "About Us", href: "/#about" }, { label: "Reservations", href: "/#contact" }] },
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "Twitter", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
copyrightText="© 2025 | Hippopotoshi Restaurant"
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -31,7 +31,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Menu", id: "/menu" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -47,7 +47,7 @@ export default function LandingPage() {
description="Experience the art of culinary excellence in an intimate setting. Where tradition meets innovation, served with passion."
buttons={[
{ text: "Reserve a Table", href: "#contact" },
{ text: "View Menu", href: "#menu" },
{ text: "View Menu", href: "/menu" },
]}
imageSrc="http://img.b2bpic.net/free-photo/two-men-cafe_23-2147775893.jpg"
mediaAnimation="blur-reveal"
@@ -115,11 +115,10 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/bottles-tasty-wine-posh-reastoraunt-are-stored-shelf_613910-17445.jpg"
<FooterBaseReveal
logoText="Hippopotoshi"
columns={[
{ title: "Navigate", items: [{ label: "Menu", href: "#menu" }, { label: "About Us", href: "#about" }, { label: "Reservations", href: "#contact" }] },
{ title: "Navigate", items: [{ label: "Menu", href: "/menu" }, { label: "About Us", href: "#about" }, { label: "Reservations", href: "#contact" }] },
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "Twitter", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}