Files
Users-Wrench/src/components/Home/CreateNft.jsx
T
2023-01-16 13:09:45 -05:00

37 lines
1.3 KiB
React
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from "react";
import { Link } from "react-router-dom";
export default function CreateNft({ className }) {
return (
<div
className={`create-nft w-full lg:h-[140px] shadow lg:flex rounded-lg justify-between items-center md:p-9 p-4 bg-white dark:bg-dark-white border-b dark:border-[#5356fb29] -2 border-pink mb-10 ${
className || ""
}`}
>
<div className="lg:w-8/12 w-full mb-8 lg:mb-0">
<h1 className="text-2xl text-dark-gray dark:text-white font-bold mb-2">
Create your own NFT and extraordinary get lot of Sell.
</h1>
<p className="text-base text-thin-light-gray tracking-wide">
Buy and sell NFTs from the worlds top artists
</p>
</div>
<div className="flex-1 flex lg:justify-end">
<div className="flex items-center space-x-5">
<Link
to="/upload-product"
className="w-40 h-11 flex justify-center items-center btn-gradient text-base rounded-full text-white"
>
Upload Products
</Link>
<Link to="/market-place" className="text-dark-gray dark:text-white text-base">
<span className=" border-b dark:border-[#5356fb29] border-dark-gray font-medium">
View Art Work
</span>
</Link>
</div>
</div>
</div>
);
}