diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3314e47..f891149 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -16,7 +16,7 @@ export default function RootLayout({ }>) { return ( - {children} + {children} ); } diff --git a/src/app/page.tsx b/src/app/page.tsx index b221635..ff56f3f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,9 +5,9 @@ import { cn } from "../lib/utils"; export default function Home() { return ( -
+
{/* Title */} -
+
Kevo's Attire
diff --git a/src/components/ui/MenuCard/MenuCard.tsx b/src/components/ui/MenuCard/MenuCard.tsx index 8d3cf1f..c2717c9 100644 --- a/src/components/ui/MenuCard/MenuCard.tsx +++ b/src/components/ui/MenuCard/MenuCard.tsx @@ -18,12 +18,12 @@ const inter = Inter({ subsets: ["latin"] }); const MenuCard = ({ Menu }: any) => { return ( -
+
{Menu.map((menu_item: any) => { return (
@@ -44,11 +44,11 @@ const MenuCard = ({ Menu }: any) => { {/* title and photo */}

{menu_item.name}

-
+
{menu_item.inStock === "yes" ? ( In Stock! ) : ( @@ -75,7 +75,7 @@ const MenuCard = ({ Menu }: any) => { {/* description text */}

{menu_item.description}