"use client"; import * as React from "react"; import { Card, CardContent, CardHeader } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import Menu from "./items.json"; import Image from "next/image"; import localFont from "next/font/local"; const interBold = localFont({ src: "./Inter-Bold.woff", display: "swap", }); const extraBold = localFont({ src: "./Inter-ExtraBold.woff", display: "swap", }); const Bar = () => { let pic = "cover"; return (
{Menu.map((menu_item) => { return (
chili pepper spice
{/* title and description of item */}
{/* title and photo */}

{menu_item.name}

{/*
chili pepper spice
*/}
{/* description text */}

{menu_item.description}

{/* cart addon */}
{`$${menu_item.price}`}
); })}
); }; export default Bar;