Connect menu to Meshkee store-items API for oaktasty.com.

Replace hardcoded products with live tenant catalog data so the menu stays in sync with the backend.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Alireza Hassani
2026-08-08 18:42:12 +03:30
co-authored by Cursor
parent 5fd7d00563
commit 42dd0595e5
13 changed files with 361 additions and 314 deletions
+4 -2
View File
@@ -1,5 +1,7 @@
import { MenuHome } from "@/components/MenuHome";
import { getMenuSections } from "@/lib/menu";
export default function HomePage() {
return <MenuHome />;
export default async function HomePage() {
const sections = await getMenuSections();
return <MenuHome sections={sections} />;
}