Skip to content

Commit

Permalink
feature:implemented adding a variant button
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmadegreat committed Aug 24, 2024
1 parent c6d8448 commit ab8e1d8
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"use client";

import Image from "next/image";
import Link from "next/link";
import { ChangeEvent, FormEvent, useState } from "react";

import Image from "next/image";
import Link from "next/link";
import user from "../../../../../../public/images/user.png";

const Discard = () => {
Expand Down Expand Up @@ -274,6 +274,10 @@ const ProductDetail = () => {
</tr>
</tbody>
</table>

<button className="my-2 mt-4 cursor-pointer rounded-md border-[1px] bg-white px-4 py-2">
Add a Variant
</button>
</div>
</div>

Expand Down Expand Up @@ -309,10 +313,9 @@ const ProductDetail = () => {
</label>
</div>
</div>
{/**variant*/}

<div className="">
{/*available*/}
{/*availablelity*/}
<div className="rounded-md bg-white p-4 shadow-md">
<h2 className="mt-2 text-lg font-semibold">Archive</h2>
<p className="mb-2 text-sm text-gray-500">Archive a product.</p>
Expand Down

0 comments on commit ab8e1d8

Please sign in to comment.