diff --git a/Team DarkCoders/Login.html b/Team DarkCoders/Login.html new file mode 100644 index 0000000..2214414 --- /dev/null +++ b/Team DarkCoders/Login.html @@ -0,0 +1,112 @@ + + + + + + + complete responsive nft website with roadmap design + + + + + + + + + + + + +
+ + + + +
+ + +
+
+
+
+ +
+
+
+
+ +
+
+
+
+

Login

+

Register

+
+
+ +
+ + + + Forgot password +
+ +
+ + + + +
+
+
+
+
+
+ + + + + + + diff --git a/Team DarkCoders/NFT Project.pdf b/Team DarkCoders/NFT Project.pdf new file mode 100644 index 0000000..ae78fcd Binary files /dev/null and b/Team DarkCoders/NFT Project.pdf differ diff --git a/Team DarkCoders/Style.css b/Team DarkCoders/Style.css new file mode 100644 index 0000000..36affef --- /dev/null +++ b/Team DarkCoders/Style.css @@ -0,0 +1,820 @@ + +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap'); + +:root{ + --Tusk:#ffffff; + --main:#9c77cb; + --meet:#ffffff; +} + +body{ + background:var(--Tusk); +} +*{ + font-family: 'Poppins', sans-serif; + margin: 0; + padding: 0; + box-sizing: border-box; + outline: none; + border: none; + text-transform: uppercase; + text-decoration: none; + transition: .2s linear; +} + +html{ + font-size: 62.5%; + overflow-x: hidden; + scroll-behavior: smooth; +} + +section{ + padding: 3rem 9%; +} + +.title{ + display: flex; + align-items: center; + font-size: 2.5rem; + margin-bottom:3rem; + padding:1.2rem 0; + border-bottom: 1px solid rgba(0,0,0,0.7); + color: var(--main); +} + +.title span{ + color: var(--main); + padding-left: .7rem; +} + +.title a{ + margin-left: auto; + color: var(--main); + font-size: 1.5rem; +} + +.title a:hover{ + color: #fff; +} + +.btn{ + margin-top: 1rem; + display:inline-block; + padding:.8rem 3rem; + background-color:var(--main); + color:var(--Tusk); + font-size: 1.7rem; + cursor:pointer; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); + border:0.1rem solid rgba(0,0,0,0.7); +} + +.btn:hover{ + background: var(--Tusk); + color: var(--main); + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1); +} + +.header{ + position:fixed; + top:0; + left:0; + right:0; + z-index: 1000; + background: var(--main); + display:flex; + align-items: center; + justify-content: space-between; + padding:2rem 9%; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); +} + +.header .logo{ + font-size: 2.4rem; + font-weight: bolder; + color: var(--Tusk); +} + +.header .logo i{ + color: var(--Tusk); + padding-right: .5rem; +} + + +.header .navbar a{ + font-size:1.7rem; + color: var(--Tusk); + margin: 0 1rem; + font-weight: bold; +} + +.header .navbar a:hover{ + color: #fff; +} + +.header .icons div{ + font-size: 2.5rem; + margin-left: 1.7rem; + cursor: pointer; + color:var(--Tusk); +} + +.header .icons div:hover{ + color: #fff; +} + +#menu-btn{ + display: none; +} + +@keyframes fadeLeft{ + 0%{ + opacity: 0; + transform:translateY(-5rem); + } +} + +@keyframes fadeUp { + 0%{ + opacity: 0; + transform: scale(0.5); + } +} + +.home{ + padding-top: 14rem; + background-color:var(--Tusk); + background-size: cover; + background-position: center; + position: relative; +} + +.home .slides-container .slide{ + display:flex; + align-items:center; + flex-wrap: wrap; + gap: 1.5rem; + display:none; +} + +.home .slides-container .slide.active{ + display: flex; +} + +.home .slides-container .slide .content{ + flex: 1 1 40rem; + animation:fadeLeft .4s linear .4s backwards; +} + + +.home .slides-container .slide .content h3{ + color: var(--main); + font-size: 2.0rem; + align-items: center; +} + +.home .slides-container .slide .content .slideimg img{ + display: inline-block; +} + +.home .slides-container .slide .img{ + flex: 1 1 40rem; + margin: 3rem 0; +} + +.home .slides-container .slide .img img{ + width: 100%; + height:490px; + animation:fadeUp .4s linear; +} + +.home #next-slide, +.home #prev-slide{ + position: absolute; + top: 50%; + transform:translateY(-50%); + height:5rem; + width:5rem; + line-height: 5rem; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); + border: 0.1rem solid rgba(0,0,0,0.7); + text-align: center; + background:var(--main); + font-size: 2rem; + color: var(--Tusk); + cursor: pointer; +} + +.home #next-slide:hover, +.home #prev-slide:hover{ + background: var(--Tusk); + color: var(--main); + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1); +} + +.home #prev-slide{ + left: 2rem; +} + +.home #next-slide{ + right: 2rem; +} + +.banner-container{ + background:var(--Tusk); + display:flex; + flex-wrap: wrap; + gap: 1.5rem; +} + +.banner-container .banner{ + flex: 1 1 35rem; + height:65rem; + overflow: hidden; + position: relative; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); + border: 0.1rem solid rgba(0,0,0,0.7); +} + +.banner-container .banner img{ + height:100%; + width:100%; + object-fit: cover; +} + +.banner-container .banner .content{ + position: absolute; + top: 70%; + left: 4%; + transform:translateY(-50%); +} + +.banner-container .banner .content h3{ + font-size: 3rem; + color: #000; + text-shadow:0 0.5rem 1rem rgba(0,0,0,0.7); +} + +.banner-container .banner .content span{ + font-size: 2.5rem; + color: #000;; + text-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); +} + +.banner-container .banner:hover img{ + transform:scale(1.2) rotate(-5deg); +} + +.story .box-container{ + display:grid; + grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); + gap: 1.5rem; +} + +.story .box-container .box{ + position:relative; + background-color:var(--main); + text-align: center; + overflow: hidden; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); + border: 0.1rem solid rgba(0,0,0,0.7); +} + +.story .box-container .box:hover .icons{ + top: 0; + height:35rem; +} + +.story .box-container .box .icons{ + position:absolute; + top: -105%; + left: 0; + height:35rem; + width: 100%; + display:flex; + align-items:center; + justify-content:center; + background:var(--main); + gap: 1rem; +} + +.story .box-container .box .icons a{ + font-size: 2rem; + height:5rem; + width:5rem; + line-height: 5rem; + background: var(--Tusk); + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1); + color:var(--main) +} + +.story .box-container .box .icons a:hover{ + background: var(--Tusk); + color:var(--main); + height:17rem; + +} + +.story .box-container .box .img{ + height:27rem; + width:27rem; + overflow:hidden; +} + +.story .box-container .box .img img{ + height:100%; + width:100%; + object-fit:cover; +} + +.story .box-container .box .content{ + padding:1.5rem; +} + +.story .box-container .box .content .price{ + font-size: 1.4rem; + color: var(--Tusk); +} + +.story .box-container .box .content h3{ + font-size:2rem; + color: var(--Tusk); +} + +.story .box-container .box .content .stars i{ + font-size: 1.4rem; + color: yellow; +} + + +.firepit{ + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 1.5rem; +} + +.firepit .img{ + flex: 1 1 40rem; +} + +.firepit .img img{ + width: 100%; + height:55rem; + overflow: hidden; + object-fit: cover; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); + border: 0.1rem solid rgba(0,0,0,0.7); +} + +.firepit .content{ + flex: 1 1 40rem; +} + +.firepit .content h3{ + color: var(--main); + font-size: 3rem; + padding-top: .5rem; +} + +.firepit .content p{ + color: var(--main); + font-size:2rem; + padding:1rem 0; +} + + + +.roadmap .slide{ + padding:2rem; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); + border: 0.1rem solid rgba(0,0,0,0.7); + border-radius: .5rem; + position: relative; + background:var(--main); +} + +.roadmap .slide .fa-quote-right{ + position: absolute; + top: 2rem; + right: 2rem; + font-size: 6rem; + color: var(--Tusk); +} + +.roadmap .slide .user{ + display:flex; + gap: 1.5rem; + align-items: center; + padding-bottom: 1.5rem; +} + +.roadmap .slide .user img{ + height:7rem; + width:7rem; + border-radius: 50%; + object-fit: cover; +} + +.roadmap .slide .user h3{ + color: var(--Tusk); + font-size: 2rem; + padding-bottom:5rem; +} + +.roadmap .slide .user i{ + font-size: 1.3rem; + color:yellow; +} + +.roadmap .slide p{ + font-size: 1.5rem; + line-height: 1.8; + color:var(--Tusk); +} + + +.teams .box-container{ + display: grid; + grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr)); + gap:1.5rem; +} + +.teams .box-container .box{ + border: 0.1rem solid rgba(0,0,0,0.7); + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); + background:var(--main); +} + +.teams .box-container .box .img{ + height:27rem; + width:27rem; + overflow:hidden; +} + +.teams .box-container .box .img:hover img{ + transform:scale(1.2); +} + +.teams .box-container .box .img img{ + height:100%; + width:100%; + object-fit: cover; +} + +.teams .box-container .box .content{ + padding:2rem 1.5rem; +} + +.teams .box-container .box .content .icons{ + border-radius:0.1rem solid rgba(0,0,0,0.1); + padding-bottom: 1.7rem; + margin-bottom: 1.7rem; + display: flex; + align-items: center; + justify-content:space-between; +} + +.teams .box-container .box .content .icons a{ + font-size: 1.4rem; + color: var(--Tusk); +} + +.teams .box-container .box .content .icons a:hover{ + color: #fff; +} + +.teams .box-container .box .content .icons a i{ + color: var(--Tusk); + padding-right:.5rem; +} + +.teams .box-container .box .content h3{ + font-size: 2.2rem; + color: var(--Tusk); +} + +.teams .box-container .box .content p{ + font-size: 1.4rem; + color: var(--Tusk); + line-height: 2; + padding:1rem 0; +} + + +.faq .icons-container{ + display:grid; + grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr)); + gap: 1.5rem; +} + +.faq .icons-container .icons{ + text-align:center; + border: 0.1rem solid rgba(0,0,0,0.7); + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); + padding: 2rem; + background:var(--main); +} + +.faq .icons-container .icons i{ + height:6rem; + width:6rem; + line-height: 6rem; + font-size: 2.5rem; + background: var(--Tusk); + color:var(--main); + border-radius:50%; +} + +.faq .icons-container .icons h3{ + color: var(--Tusk); + font-size: 2rem; + padding:1rem 0; +} + +.faq .icons-container .icons p{ + color: var(--Tusk); + font-size: 1.5rem; + line-height: 2; +} + + +.footer{ + background:black; + color:grey; +} + +.footer .box-container{ + display:grid; + grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); + gap:1.5rem; +} + +.footer .box-container .box h3{ + font-size: 2.2rem; + color: var(--Tusk); + padding:1rem 0; +} + +.footer .box-container .box p{ + font-size: 1.5rem; + color: var(--Tusk); + padding-bottom: .5rem; +} + +.footer .box-container .box a{ + font-size: 1.4rem; + color: var(--Tusk); + padding: 1rem 0; + display:block; +} + +.footer .box-container .box a:hover{ + color: #fff; +} + +.footer .box-container .box a:hover i{ + padding-right: 2rem; +} + +.footer .box-container .box a i{ + padding-right:.5rem; + color: var(--Tusk); +} + +.footer .box-container .box form input[type="email"]{ + width: 100%; + padding:1rem 1.2rem; + font-size: 1.6rem; + color: var(--Tusk); + margin: 1rem 0; + text-transform: none; +} + +.footer .box-container .box .payments{ + width: 100%; + margin-top: 2rem; +} + +.credit{ + text-align: center; + background:var(--main); + color:#000; + font-size: 2rem; +} + +.credit span{ + color:var(--Tusk); + max-size:50px; +} + + +/* media queries */ +@media(max-width:991px){ + html{ + font-size: 55%; + } + .header{ + padding:2rem; + } + section{ + padding:3rem 2rem; + } + .home #next-slide, + .home #prev-slide{ + transform:translateY(0); + top: 88%; + } + .home #prev-slide{ + left:auto; + right: 8rem; + } +} + +@media(max-width:768px){ + + #menu-btn{ + display: inline-block; + } + + .header .navbar{ + position:absolute; + top:99%; + left:0; + right:0; + background:var(--main); + border-top:1px solid rgba(0,0,0,0.1); + clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); + } + .header .navbar.active{ + clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); + } + + .header .navbar a{ + margin: 1.5rem; + padding:1.5rem; + background:var(--Tusk); + font-size: 2rem; + display:block; + border-radius: .5rem; + } +} + +@media(max-width:450px){ + html{ + font-size: 50%; + } + .home .slides-container .slide .content .slideimg img{ + display: none; + } + .home .slides-container .slide .content h3{ + font-size:1rem; + } + .story .box-container .box .img{ + width: 100%; + } +} + + + + +/* Login */ +.header{ + position:fixed; + top:0; + left:0; + right:0; + z-index: 1000; + background: var(--main); + display:flex; + align-items: center; + justify-content: space-between; + padding:2rem 9%; + box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.7); +} +.navbar{ + display:flex; + align-items:center; + padding:10px; +} +.login-page{ + padding:50px 0; +} + .container{ + max-width:1300px; + + margin:auto; + padding-top:100px; + padding-left:25px; + padding-right:25px; +} +.row{ + display:flex; + align-items:center; + flex-wrap:wrap; + justify-content:space-around; +} +.col{ + flex-basis:50%; + min-width:250px; +} +.col img{ + max-width:100%; + padding:30px 0; + +} +.col h1{ + font-size:90px; + line-height:60px; + margin:25px 0; + font-family:Times New Roman; +} +body{ + background:var(--Tusk); +} +*{ + font-family: 'Poppins', sans-serif; + margin: 0; + padding: 0; + box-sizing: border-box; + outline: none; + border: none; + text-transform: uppercase; + text-decoration: none; + transition: .2s linear; +} + + + + +.form-container{ + background:#fff; + width:300px; + height:400px; + position:relative; + text-align:center; + padding:20px 0; + margin:auto; + box-shadow:0 0 20px 0 rgba(0,0,0,0.1); + overflow:hidden; +} +.form-container span{ + font-weight:bold; + padding:0 10px; + color:#555; + cursor:pointer; + width:100px; + display:inline-block; +} +.form-btn{ + display:inline-block; +} +.form-container form{ + max-width:300px; + padding:0 20px; + position:absolute; + top:130px; + transition:transform 0.8s; +} +form input{ + width:100%; + height:30px; + margin:10px 0; + padding:0 10px; + border:1px solid #ccc; +} +form .btn{ + width:100%; + border:none; + cursor:pointer; + margin:10px; +} +form .btn:focus{ + outline:none; +} +#Loginform{ + left:-300px; + +} +#Regform{ + left:0; +} +form a{ + font-size:12px; +} +#indicator{ + width:100px; + border:none; + background:#ff523b; + height:3px; + margin-top:8px; + transform:translateX(100px); + transition:transform 0.8s; +} + +@media only screen and (max-width:600px){ + .row{ + text-align:center; + } +} + diff --git a/Team DarkCoders/img/11.webp b/Team DarkCoders/img/11.webp new file mode 100644 index 0000000..15c8953 Binary files /dev/null and b/Team DarkCoders/img/11.webp differ diff --git a/Team DarkCoders/img/12.webp b/Team DarkCoders/img/12.webp new file mode 100644 index 0000000..1236693 Binary files /dev/null and b/Team DarkCoders/img/12.webp differ diff --git a/Team DarkCoders/img/21.jpg b/Team DarkCoders/img/21.jpg new file mode 100644 index 0000000..d38bc2d Binary files /dev/null and b/Team DarkCoders/img/21.jpg differ diff --git a/Team DarkCoders/img/23.webp b/Team DarkCoders/img/23.webp new file mode 100644 index 0000000..a80d159 Binary files /dev/null and b/Team DarkCoders/img/23.webp differ diff --git a/Team DarkCoders/img/31.png b/Team DarkCoders/img/31.png new file mode 100644 index 0000000..e3a42cc Binary files /dev/null and b/Team DarkCoders/img/31.png differ diff --git a/Team DarkCoders/img/32.png b/Team DarkCoders/img/32.png new file mode 100644 index 0000000..7f3b175 Binary files /dev/null and b/Team DarkCoders/img/32.png differ diff --git a/Team DarkCoders/img/33.png b/Team DarkCoders/img/33.png new file mode 100644 index 0000000..768d118 Binary files /dev/null and b/Team DarkCoders/img/33.png differ diff --git a/Team DarkCoders/img/41.1.jpg b/Team DarkCoders/img/41.1.jpg new file mode 100644 index 0000000..40f9dfc Binary files /dev/null and b/Team DarkCoders/img/41.1.jpg differ diff --git a/Team DarkCoders/img/41.jpg b/Team DarkCoders/img/41.jpg new file mode 100644 index 0000000..ee52dd4 Binary files /dev/null and b/Team DarkCoders/img/41.jpg differ diff --git a/Team DarkCoders/img/42.jpg b/Team DarkCoders/img/42.jpg new file mode 100644 index 0000000..50ab914 Binary files /dev/null and b/Team DarkCoders/img/42.jpg differ diff --git a/Team DarkCoders/img/45.png b/Team DarkCoders/img/45.png new file mode 100644 index 0000000..3cdfe3d Binary files /dev/null and b/Team DarkCoders/img/45.png differ diff --git a/Team DarkCoders/img/52.png b/Team DarkCoders/img/52.png new file mode 100644 index 0000000..0db0e72 Binary files /dev/null and b/Team DarkCoders/img/52.png differ diff --git a/Team DarkCoders/img/55.jpeg b/Team DarkCoders/img/55.jpeg new file mode 100644 index 0000000..948cafe Binary files /dev/null and b/Team DarkCoders/img/55.jpeg differ diff --git a/Team DarkCoders/img/61.avif b/Team DarkCoders/img/61.avif new file mode 100644 index 0000000..49912a4 Binary files /dev/null and b/Team DarkCoders/img/61.avif differ diff --git a/Team DarkCoders/img/logo.png b/Team DarkCoders/img/logo.png new file mode 100644 index 0000000..1a5a630 Binary files /dev/null and b/Team DarkCoders/img/logo.png differ diff --git a/Team DarkCoders/img/main111.jpeg b/Team DarkCoders/img/main111.jpeg new file mode 100644 index 0000000..1d4ecdf Binary files /dev/null and b/Team DarkCoders/img/main111.jpeg differ diff --git a/Team DarkCoders/img/main12.jpg b/Team DarkCoders/img/main12.jpg new file mode 100644 index 0000000..cf3e954 Binary files /dev/null and b/Team DarkCoders/img/main12.jpg differ diff --git a/Team DarkCoders/img/user.png b/Team DarkCoders/img/user.png new file mode 100644 index 0000000..dabea5e Binary files /dev/null and b/Team DarkCoders/img/user.png differ diff --git a/Team DarkCoders/nft.html b/Team DarkCoders/nft.html new file mode 100644 index 0000000..efcea49 --- /dev/null +++ b/Team DarkCoders/nft.html @@ -0,0 +1,643 @@ + + + + + + + complete responsive nft website with roadmap design + + + + + + + + + + + + + +
+ + + + +
+ + +
+
+
+
+ + + +
+
+ +
+
+
+ +
+

Funk, meet web 3. A collection of 8,888 unique digital tekons that + are building the new free world before our eyes.

+ twitter + opensea +
+
+ +
+
+ +
+
+
+ +
+

Funk, meet web 3. A collection of 8,888 unique digital tekons that + are building the new free world before our eyes.

+ twitter + opensea +
+
+ +
+
+
+
+
+
+ + + + + + + + + +
+

our storyview all >>

+ +
+ +
+
+ + + +
+
+ +
+
+

Rock-Star Tekon

+
$19.99
+
+ + + + + +
+
+
+ +
+
+ + + +
+
+ +
+
+

Corporate Tekon

+
$19.99
+
+ + + + + +
+
+
+ +
+
+ + + +
+
+ +
+
+

Stoner Tekon

+
$19.99
+
+ + + + + +
+
+
+ +
+
+ + + +
+
+ +
+
+

Psychedelic Tekon

+
$19.99
+
+ + + + + +
+
+
+ +
+
+ + + +
+
+ +
+
+

Artistic Tekon

+
$19.99
+
+ + + + + +
+
+
+ +
+
+ + + +
+
+ +
+
+

Musician Tekon

+
$19.99
+
+ + + + + +
+
+
+ +
+
+ + + +
+
+ +
+
+

Road Tripping Tekon

+
$19.99
+
+ + + + + +
+
+
+ +
+
+ + + +
+
+ +
+
+

Developer Tekon

+
$19.99
+
+ + + + + +
+
+
+ +
+
+ + +
+

The Firepit read more >>

+
+
+
+

The Fire Pit

+

Here is where we come together and help shape the + future of Tekons. This is a spot where the tekon- + collective gather to make a difference in the web3 + space and vote on proposals as a community. +

+ Come and get to know the family today; showcase + your skills and find like minded people. +

+ check out +
+ +
+ +
+
+ + + + +
+

roadmap review read more >>

+
+ +
+
+
+ +
+ +
+ + +
+

When we first began Tekons we had a simple goal in mind; + to adopt a community first farhan that holds a safe-space + for all members. The process is simple but efficient. Peace, + love and kindness toward others is a big part of who we are.

+
+ +
+ +
+ + +
+

When we first began Tekons we had a simple goal in mind; + to adopt a community first farhan that holds a safe-space + for all members. The process is simple but efficient. Peace, + love and kindness toward others is a big part of who we are.

+
+ +
+ +
+ + +
+

When we first began Tekons we had a simple goal in mind; + to adopt a community first farhan that holds a safe-space + for all members. The process is simple but efficient. Peace, + love and kindness toward others is a big part of who we are.

+
+ +
+ +
+ + +
+

When we first began Tekons we had a simple goal in mind; + to adopt a community first farhan that holds a safe-space + for all members. The process is simple but efficient. Peace, + love and kindness toward others is a big part of who we are.

+
+ +
+ +
+ + +
+

When we first began Tekons we had a simple goal in mind; + to adopt a community first farhan that holds a safe-space + for all members. The process is simple but efficient. Peace, + love and kindness toward others is a big part of who we are.

+
+ +
+ +
+ + +
+

When we first began Tekons we had a simple goal in mind; + to adopt a community first farhan that holds a safe-space + for all members. The process is simple but efficient. Peace, + love and kindness toward others is a big part of who we are.

+
+ +
+
+
+ + + + +
+

our team view all >>

+ + +
+ +
+
+ +
+
+ +

Founding Tekon

+

Lorem ipsum dolor sit amet, farhan aliqua. Ut enim ad minim veniam, quis

+ read more... +
+
+ +
+
+ +
+
+ +

Founder & Artist

+

Lorem ipsum dolor sit amet, farhan aliqua. Ut enim ad minim veniam, quis

+ read more... +
+
+ +
+
+ +
+
+ +

Developer

+

Lorem ipsum dolor sit amet, farhan aliqua. Ut enim ad minim veniam, quis

+ read more... +
+
+ +
+
+ + + +
+

FAQ question what we say >>

+
+ +
+
+
+ +

Is there a place to buy off of secondaries?

+

Opensea

+

Looks Rare

+
+ +
+ +

What are your secondary royalty fees?

+

5%

+

0.02%

+
+ +
+ +

Total number of tokens Blockchain:

+

8.888

+

7.561

+
+
+
+ + + + + +
created by Dailywebdesign || all rights reserved
+ + + + + + + \ No newline at end of file diff --git a/Team DarkCoders/package.json b/Team DarkCoders/package.json new file mode 100644 index 0000000..ad34273 --- /dev/null +++ b/Team DarkCoders/package.json @@ -0,0 +1,48 @@ +{ + "name": "frontend", + "version": "0.1.0", + "private": true, + "dependencies": { + "@testing-library/jest-dom": "^4.2.4", + "@testing-library/react": "^9.5.0", + "@testing-library/user-event": "^7.2.1", + "axios": "^0.21.1", + "bootstrap": "^4.5.0", + "classnames": "^2.2.6", + "jwt-decode": "^2.2.0", + "materialize-css": "^1.0.0-rc.2", + "moment": "^2.27.0", + "react": "^16.13.1", + "react-bootstrap": "^1.3.0", + "react-dom": "^16.13.1", + "react-moment": "^0.9.7", + "react-paystack": "^3.0.1", + "react-redux": "^7.2.0", + "react-router-dom": "^5.2.0", + "react-scripts": "^5.0.1", + "react-toastify": "^6.0.8", + "redux": "^4.0.5", + "redux-thunk": "^2.3.0" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": "react-app" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..d16766e --- /dev/null +++ b/package.json @@ -0,0 +1,49 @@ +{ + "name": "frontend", + "version": "0.1.0", + "private": true, + "dependencies": { + "@testing-library/jest-dom": "^4.2.4", + "@testing-library/react": "^9.5.0", + "@testing-library/user-event": "^7.2.1", + "axios": "^0.21.1", + "bootstrap": "^4.5.0", + "classnames": "^2.2.6", + "jwt-decode": "^2.2.0", + "materialize-css": "^1.0.0-rc.2", + "moment": "^2.27.0", + "react": "^16.13.1", + "react-bootstrap": "^1.3.0", + "react-dom": "^16.13.1", + "react-moment": "^0.9.7", + "react-paystack": "^3.0.1", + "react-redux": "^7.2.0", + "react-router-dom": "^5.2.0", + "react-scripts": "^5.0.1", + "react-toastify": "^6.0.8", + "redux": "^4.0.5", + "redux-thunk": "^2.3.0" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": "react-app" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} +