"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 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
*/}
{/* paragraph text */}

{menu_item.description}

{/* 16px line height */}

{menu_item.description}

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