diff --git a/public/Mockup 13.jpg b/public/Mockup 13.jpg new file mode 100644 index 0000000..f61f17e Binary files /dev/null and b/public/Mockup 13.jpg differ diff --git a/public/Mockup 72.jpg b/public/Mockup 72.jpg new file mode 100644 index 0000000..a6cd68a Binary files /dev/null and b/public/Mockup 72.jpg differ diff --git a/public/Mockup 74.jpg b/public/Mockup 74.jpg new file mode 100644 index 0000000..779a9c2 Binary files /dev/null and b/public/Mockup 74.jpg differ diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index d2f8422..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index da6b719..7c2f677 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,20 +1,30 @@ import Image from "next/image"; import MenuCard from "@/components/ui/MenuCard/MenuCard"; -import Product from './products.json' +import Product from "./products.json"; +import { cn } from "../lib/utils"; export default function Home() { return ( -
+
{/* Title */} -
Kevo's Attire
+
+ Kevo's Attire +
{/* Body */} -
+
{/* Footer */} -
footer
+
+
+ Email us at + kevosattire@gmail.com to + order! +
+
+
); } diff --git a/src/app/products.json b/src/app/products.json index ad58076..fb65ab8 100644 --- a/src/app/products.json +++ b/src/app/products.json @@ -1,22 +1,32 @@ [ { - "id": 1, - "name": "Caguamas", - "photo": "../public/next.svg", - "price": 14, - "size": "32oz", - "spicy": "no", + "id": 13, + "name": "No One Left Behind", + "photo": "Mockup 13.jpg", + "price": 25, + "size": "Youth-S/M/L/2XL | Adult-S/M/L/2XL", + "inStock": "no", "favorite": "no", - "description": "A drink." + "description": "It's not an option.." }, { - "id": 2, - "name": "Jefes Tower", - "photo": "../public/next.svg", - "price": 35, - "size": "100oz", - "spicy": "yes", + "id": 72, + "name": "This is How I Roll", + "photo": "Mockup 72.jpg", + "price": 25, + "size": "Youth-S/M/L/2XL | Adult-S/M/L/2XL", + "inStock": "yes", "favorite": "no", - "description": "A tower full of Corona." + "description": "They see me rollin', they hatin'..." + }, + { + "id": 74, + "name": "Space Man", + "photo": "Mockup 74.jpg", + "price": 25, + "size": "Youth-S/M/L/2XL | Adult-S/M/L/2XL", + "inStock": "yes", + "favorite": "no", + "description": "In the clouds..." } ] \ No newline at end of file diff --git a/src/components/ui/MenuCard/MenuCard.tsx b/src/components/ui/MenuCard/MenuCard.tsx index 436bcb4..b85fb35 100644 --- a/src/components/ui/MenuCard/MenuCard.tsx +++ b/src/components/ui/MenuCard/MenuCard.tsx @@ -17,18 +17,18 @@ const inter = Inter({ subsets: ["latin"] }); const MenuCard = ({ Menu }: any) => { return ( -
+
{Menu.map((menu_item: any) => { return ( -
+
chili pepper spice { {menu_item.name}
- {menu_item.spicy === "yes" ? ( - chili pepper spice + {menu_item.inStock === "yes" ? ( + In Stock! ) : ( -
+ Out of Stock )} {menu_item.favorite === "yes" ? (