From c111271fe837abc8003fa203e8fe0a3cdb72b2c7 Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Thu, 25 Jan 2024 23:46:27 -0800 Subject: [PATCH] update --- Websites/jefes-nextjs/app/menu/Bar/page.tsx | 41 ++++++++++++--------- 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/Websites/jefes-nextjs/app/menu/Bar/page.tsx b/Websites/jefes-nextjs/app/menu/Bar/page.tsx index 3f5ae13..d7e6f8b 100644 --- a/Websites/jefes-nextjs/app/menu/Bar/page.tsx +++ b/Websites/jefes-nextjs/app/menu/Bar/page.tsx @@ -4,16 +4,16 @@ 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'; +import localFont from "next/font/local"; const interBold = localFont({ - src: './Inter-Bold.woff', - display: 'swap', -}) + src: "./Inter-Bold.woff", + display: "swap", +}); const extraBold = localFont({ - src: './Inter-ExtraBold.woff', - display: 'swap', -}) + src: "./Inter-ExtraBold.woff", + display: "swap", +}); const Bar = () => { let pic = "cover"; @@ -22,7 +22,10 @@ const Bar = () => {
{Menu.map((menu_item) => { return ( - +
{
{/* description text */}
-

+

{menu_item.description}

- {/* cart addon */} -
-
- {`$${menu_item.price}`} -
-
-
-
-
+ {/* cart addon */} +
+
+ {`$${menu_item.price}`} +
+
+
+
+
); })}