mirror of
https://git.meshkee.com/Meshkee-Websites/oaktasty.git
synced 2026-08-11 20:50:57 +04:30
Replace hardcoded products with live tenant catalog data so the menu stays in sync with the backend. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
import { MenuHome } from "@/components/MenuHome";
|
|
import { getMenuSections } from "@/lib/menu";
|
|
|
|
export default async function HomePage() {
|
|
const sections = await getMenuSections();
|
|
return <MenuHome sections={sections} />;
|
|
}
|