├── .gitignore
├── README.md
├── build
├── asset-manifest.json
├── favicon.ico
├── index.html
├── logo192.png
├── logo512.png
├── manifest.json
├── robots.txt
└── static
│ ├── css
│ ├── main.e5ae9a6c.css
│ └── main.e5ae9a6c.css.map
│ ├── js
│ ├── main.b44e377c.js
│ ├── main.b44e377c.js.LICENSE.txt
│ └── main.b44e377c.js.map
│ └── media
│ ├── home.7fc4253ec840bd813401.png
│ ├── release1.0c482aba7d6da2c3e9bb.png
│ ├── release2.d54e21ff9ecf711580c1.png
│ ├── signup.12cb0fcd7fcce38eca10.png
│ ├── super1.1fbdfb3ac7255099ffbb.png
│ ├── super2.3dd3ef03cdf3bdd7f265.png
│ ├── super3.190d195b791351c19c67.png
│ └── super4.cb4b74964859a8dd6ecb.png
├── package-lock.json
├── package.json
├── public
├── favicon.ico
├── index.html
├── logo192.png
├── logo512.png
├── manifest.json
└── robots.txt
├── src
├── App.js
├── assets
│ ├── clients1.png
│ ├── clients2.png
│ ├── clients3.png
│ ├── clients4.png
│ ├── clients5.png
│ ├── eth1.png
│ ├── eth2.png
│ ├── home.png
│ ├── icon.png
│ ├── logo.png
│ ├── release1.png
│ ├── release2.png
│ ├── signup.png
│ ├── super1.png
│ ├── super2.png
│ ├── super3.png
│ ├── super4.png
│ └── supereth.png
├── components
│ ├── Card.jsx
│ ├── Clients.jsx
│ ├── Footer.jsx
│ ├── Free.jsx
│ ├── Home.jsx
│ ├── Like.jsx
│ ├── Navbar.jsx
│ ├── Release.jsx
│ ├── ScrollToTop.jsx
│ ├── Signup.jsx
│ └── SuperRare.jsx
├── index.js
└── sass
│ ├── base
│ └── _base.scss
│ ├── components
│ ├── _card.scss
│ ├── _footer.scss
│ ├── _navbar.scss
│ └── _scrollToTop.scss
│ ├── index.scss
│ └── sections
│ ├── _clients.scss
│ ├── _free.scss
│ ├── _home.scss
│ ├── _like.scss
│ ├── _release.scss
│ ├── _signup.scss
│ └── _superRare.scss
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Getting Started with Create React App
2 |
3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4 |
5 | ## Available Scripts
6 |
7 | In the project directory, you can run:
8 |
9 | ### `npm start`
10 |
11 | Runs the app in the development mode.\
12 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
13 |
14 | The page will reload when you make changes.\
15 | You may also see any lint errors in the console.
16 |
17 | ### `npm test`
18 |
19 | Launches the test runner in the interactive watch mode.\
20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21 |
22 | ### `npm run build`
23 |
24 | Builds the app for production to the `build` folder.\
25 | It correctly bundles React in production mode and optimizes the build for the best performance.
26 |
27 | The build is minified and the filenames include the hashes.\
28 | Your app is ready to be deployed!
29 |
30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31 |
32 | ### `npm run eject`
33 |
34 | **Note: this is a one-way operation. Once you `eject`, you can't go back!**
35 |
36 | If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37 |
38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
39 |
40 | You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
41 |
42 | ## Learn More
43 |
44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45 |
46 | To learn React, check out the [React documentation](https://reactjs.org/).
47 |
48 | ### Code Splitting
49 |
50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51 |
52 | ### Analyzing the Bundle Size
53 |
54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55 |
56 | ### Making a Progressive Web App
57 |
58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59 |
60 | ### Advanced Configuration
61 |
62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63 |
64 | ### Deployment
65 |
66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67 |
68 | ### `npm run build` fails to minify
69 |
70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
71 |
--------------------------------------------------------------------------------
/build/asset-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "files": {
3 | "main.css": "./static/css/main.e5ae9a6c.css",
4 | "main.js": "./static/js/main.b44e377c.js",
5 | "static/media/release1.png": "./static/media/release1.0c482aba7d6da2c3e9bb.png",
6 | "static/media/home.png": "./static/media/home.7fc4253ec840bd813401.png",
7 | "static/media/signup.png": "./static/media/signup.12cb0fcd7fcce38eca10.png",
8 | "static/media/release2.png": "./static/media/release2.d54e21ff9ecf711580c1.png",
9 | "static/media/super2.png": "./static/media/super2.3dd3ef03cdf3bdd7f265.png",
10 | "static/media/super4.png": "./static/media/super4.cb4b74964859a8dd6ecb.png",
11 | "static/media/super1.png": "./static/media/super1.1fbdfb3ac7255099ffbb.png",
12 | "static/media/super3.png": "./static/media/super3.190d195b791351c19c67.png",
13 | "index.html": "./index.html",
14 | "main.e5ae9a6c.css.map": "./static/css/main.e5ae9a6c.css.map",
15 | "main.b44e377c.js.map": "./static/js/main.b44e377c.js.map"
16 | },
17 | "entrypoints": [
18 | "static/css/main.e5ae9a6c.css",
19 | "static/js/main.b44e377c.js"
20 | ]
21 | }
--------------------------------------------------------------------------------
/build/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/favicon.ico
--------------------------------------------------------------------------------
/build/index.html:
--------------------------------------------------------------------------------
1 |
React App
--------------------------------------------------------------------------------
/build/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/logo192.png
--------------------------------------------------------------------------------
/build/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/logo512.png
--------------------------------------------------------------------------------
/build/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/build/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/build/static/css/main.e5ae9a6c.css:
--------------------------------------------------------------------------------
1 | @import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap);:root{--orange:#ff8139;--pink:#ff3998;--green:#39ffa0;--red:#ff3939;--light-green:#edfff6;--light-orange:#fff0e8;--accent-color1:#fff;--accent-color2:#555;--accent-color3:#ccc;--card-color:#000;--background:#111;--font-family:"Inter",sans-serif}[data-theme=light]{--background:#fff;--accent-color1:#000;--accent-color2:#eee;--accent-color3:#777;--card-color:#eee}*{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}.app-container{background-color:#111;background-color:var(--background);font-family:Inter,sans-serif;font-family:var(--font-family);overflow-x:hidden;padding:2rem 4rem;transition:.5s ease-in-out}@media screen and (min-width:280px)and (max-width:1080px){.app-container{padding:0}}::-webkit-scrollbar{background-color:#111;width:.2rem}::-webkit-scrollbar-thumb{background-color:#ff8139;background-color:var(--orange)}.scrollToTop{align-items:center;background-clip:content-box,border-box;background-color:red;background-image:linear-gradient(hsla(0,0%,100%,0),hsla(0,0%,100%,0)),linear-gradient(101deg,#ff3998,#ff8139);background-image:linear-gradient(hsla(0,0%,100%,0),hsla(0,0%,100%,0)),linear-gradient(101deg,var(--pink),var(--orange));background-origin:border-box;border:3px solid transparent;border-radius:5rem;bottom:5%;box-shadow:inset 2px 1000px 1px #111;box-shadow:2px 1000px 1px var(--background) inset;cursor:pointer;display:flex;height:4rem;justify-content:center;opacity:0;position:fixed;right:5%;transition:.5s ease-in-out;visibility:hidden;width:4rem;z-index:100}.scrollToTop:hover{box-shadow:none}.scrollToTop a svg{color:#fff;color:var(--accent-color1);font-size:2rem}.visible{opacity:1;visibility:visible}nav{align-items:center;display:flex;justify-content:space-between}nav .brand-container .brand img{height:100%}nav .brand-container .toggle-container{display:none}nav .links-container .links{display:flex;gap:4rem;list-style-type:none}nav .links-container .links li .dark{color:#000}nav .links-container .links li .light{color:#ff0}nav .links-container .links li a{color:#ccc;color:var(--accent-color3);text-decoration:none}nav .links-container .links li:last-of-type a{color:#ff3998;color:var(--pink)}[data-theme=light] nav .brand-container .brand img{-webkit-filter:brightness(0);filter:brightness(0)}@media screen and (min-width:280px)and (max-width:1080px){nav{padding:1rem 2rem;position:relative}nav .brand-container{align-items:center;display:flex;justify-content:space-between;width:100%}nav .brand-container .brand img{height:1.5rem}nav .brand-container .toggle-container{color:#fff;color:var(--accent-color1);display:block;display:flex;flex-direction:row-reverse;gap:1rem;z-index:40}nav .brand-container .toggle-container .toggle{display:block;z-index:40}nav .links-container{align-items:center;background-image:linear-gradient(101deg,#ff3998,#ff8139);background-image:linear-gradient(101deg,var(--pink),var(--orange));display:flex;height:100vh;justify-content:center;opacity:0;position:absolute;right:0;top:0;transition:.5s ease-in-out;visibility:hidden;width:0;z-index:30}nav .links-container .links{flex-direction:column}nav .links-container .links li a{color:#111;color:var(--background)}nav .links-container .links li:last-of-type{display:none}nav .nav-visible{opacity:1;visibility:visible;width:60vw}}footer{display:flex;flex-direction:column;gap:5rem;margin:6rem 0}footer .upper{color:#ccc;color:var(--accent-color3);display:flex;justify-content:space-between}footer .upper .brand-container{display:flex;flex-direction:column;gap:1.5rem}footer .upper .brand-container ul{display:flex;gap:1rem;list-style-type:none}footer .upper .links{display:flex;gap:8rem}footer .upper .links .link{display:flex;flex-direction:column;gap:2rem}footer .upper .links .link h4{color:#fff;color:var(--accent-color1);text-transform:uppercase}footer .upper .links .link ul{display:flex;flex-direction:column;gap:1rem;list-style-type:none}footer .lower{display:flex;justify-content:space-between}footer .lower span{color:#ccc;color:var(--accent-color3)}[data-theme=light] footer .brand-container .brand img{-webkit-filter:brightness(0);filter:brightness(0)}@media screen and (min-width:280px)and (max-width:1080px){footer{gap:2rem;margin:0;padding:1rem 2rem}footer .upper{flex-direction:column;gap:2rem}footer .upper .links{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:1fr 1fr}footer .upper .links .link{gap:1rem}footer .lower{flex-direction:column;gap:1rem}}.card{background-color:#000;background-color:var(--card-color);border-radius:1rem;width:-webkit-max-content;width:max-content}.card-content{display:flex;flex-direction:column;gap:.5rem;padding:1rem}.card-content .card-heading{display:flex;justify-content:space-between}.card-content .card-heading .card-series{color:#ff8139;color:var(--orange);font-size:.7rem;text-transform:uppercase}.card-content .card-heading .card-top{color:#ccc;color:var(--accent-color3);font-size:.7rem;text-transform:uppercase}.card-content .card-details{color:#fff;color:var(--accent-color1);display:flex;justify-content:space-between}.card-content .card-details .card-price{display:flex;gap:1rem}.card-content .card-sub-details{display:flex;justify-content:space-between}.card-content .card-sub-details span{color:#ccc;color:var(--accent-color3);font-size:.9rem}.home{margin-top:6rem}.home .container{display:grid;font-size:32px;grid-template-columns:1fr 1fr}.home .container .content{align-items:flex-start;display:flex;flex-direction:column;gap:2rem;margin-top:3rem}.home .container .content .sub-title{color:#ff3998;color:var(--pink);letter-spacing:.1rem;text-transform:uppercase}.home .container .content .title{color:#fff;color:var(--accent-color1)}.home .container .content .description{color:#ccc;color:var(--accent-color3)}.home .container .content button{background-clip:content-box,border-box;background-color:#111;background-color:var(--background);background-image:linear-gradient(hsla(0,0%,100%,0),hsla(0,0%,100%,0)),linear-gradient(101deg,#ff3998,#ff8139);background-image:linear-gradient(hsla(0,0%,100%,0),hsla(0,0%,100%,0)),linear-gradient(101deg,var(--pink),var(--orange));background-origin:border-box;border:3px solid transparent;border-radius:2rem;box-shadow:0 0 6px 0 rgba(157,96,212,.5);box-shadow:inset 2px 1000px 1px #111;box-shadow:2px 1000px 1px var(--background) inset;color:#fff;color:var(--accent-color1);cursor:pointer;font-weight:700;padding:1rem 3rem;transition:.5s ease-in-out}.home .container .content button:hover{box-shadow:none}.home .container .image-container{position:relative;text-align:center;z-index:10}.home .container .image-container .ellipse-container .ellipse{-webkit-filter:blur(100px);filter:blur(100px);height:15rem;position:absolute;width:15rem;z-index:-1}.home .container .image-container .ellipse-container .pink{background-color:#ff3998;background-color:var(--pink);right:40%;top:40%}.home .container .image-container .ellipse-container .orange{background-color:#ff8139;background-color:var(--orange);bottom:40%;left:40%}@media screen and (min-width:280px)and (max-width:1080px){.home{margin-top:1rem;overflow-x:hidden;padding:1rem;position:relative}.home .container{font-size:16px;grid-template-columns:.7fr}.home .container .image-container{position:absolute;right:-10%;top:30%}.home .container .image-container .image img{height:10rem}.home .container .image-container .ellipse-container .ellipse{-webkit-filter:blur(30px);filter:blur(30px);height:6rem;width:6rem}.home .container .image-container .ellipse-container .pink{right:10%}.home .container .image-container .ellipse-container .orange{left:-5%}}.free{margin:5rem 0;position:relative}.free .container{background-color:#ff8139;background-color:var(--orange);border-radius:1rem;display:flex;height:25rem;overflow:hidden;position:relative;z-index:1}.free .container .background{z-index:-1}.free .container .background .ellipse{border-radius:100%;-webkit-filter:blur(100px);filter:blur(100px);height:100%;position:absolute;width:28rem}.free .container .background .pink{background-color:#ff3998;background-color:var(--pink);left:-15%;top:-10%}.free .container .background .green{background-color:#39ffa0;background-color:var(--green);right:-15%;top:-10%}.free .container .content{display:flex;flex-direction:column;font-size:1.3rem;gap:1.5rem;padding-left:5rem;padding-top:3rem;z-index:1}.free .container .content .title{font-size:2rem}.free .cards{display:flex;position:absolute;right:40%;top:-2rem}.free .cards .card1{font-size:.6rem;position:absolute;top:0;-webkit-transform:rotate(-10deg);transform:rotate(-10deg);z-index:3}.free .cards .card1 .card-image img{height:10rem;width:12rem}.free .cards .card2{font-size:.7rem;left:10rem;position:absolute;top:0;-webkit-transform:rotate(5deg);transform:rotate(5deg);z-index:2}.free .cards .card2 .card-image img{height:10rem}@media screen and (min-width:280px)and (max-width:1080px){.free{margin:0}.free .container{border-radius:0;height:40vh;padding:1rem 2rem}.free .container .background .pink{left:-70%}.free .container .background .green{right:-100%}.free .container .content{font-size:16px;gap:1rem;padding:0}.free .container .content .title{font-size:22px}.free .cards .card1,.free .cards .card2{zoom:.3}}.clients{padding:6rem 0}.clients .container .clients-container{display:grid;grid-template-columns:repeat(5,1fr);text-align:center}@media screen and (min-width:280px)and (max-width:1080px){.clients{padding:1rem 2rem}.clients .container .clients-container{gap:1rem;grid-template-columns:repeat(2,1fr);text-align:left}.clients .container .clients-container .client:nth-of-type(5){display:none}.clients .container .clients-container .client img{height:1.5rem}}.super-rare{display:flex;flex-direction:column;gap:2rem}.super-rare .title-container{display:flex;flex-direction:column;gap:1rem}.super-rare .title-container .title{color:#fff;color:var(--accent-color1);font-size:2.4rem}.super-rare .title-container .description{color:#ccc;color:var(--accent-color3)}.super-rare .title-container .description a{color:#ccc;color:var(--accent-color3);font-weight:700}.super-rare .cards{display:flex;gap:5rem;justify-content:space-evenly}@media screen and (min-width:280px)and (max-width:1080px){.super-rare{padding:1rem 2rem;width:100vw}.super-rare .cards{gap:2rem;justify-content:flex-start;overflow:auto;padding-left:1.5rem}.super-rare .cards::-webkit-scrollbar{display:none}.super-rare .cards .card{zoom:.7}}.releases{display:flex;flex-direction:column;gap:5rem;margin:5rem 0}.releases .release{border-radius:.5rem;display:grid;grid-template-columns:1fr 1fr}.releases .release .content{display:flex;flex-direction:column;gap:2rem;padding:5rem 8rem}.releases .release .content .title{font-size:2rem}.releases .release .content .description{font-size:1.3rem}.releases .release .content .description a{color:#000;font-weight:700}.releases .release .content .link{color:#000;display:flex;font-weight:700;gap:1rem;text-decoration:none}.releases .release .content .link svg{font-size:1.2rem}.releases .release .image{align-items:flex-end;display:flex;justify-content:center;overflow:hidden;position:relative;text-align:center;z-index:1}.releases .release .image img{height:24rem}.releases .release .image .ellipse{bottom:-40%;-webkit-filter:blur(100px);filter:blur(100px);height:20rem;position:absolute;right:0;width:20rem;z-index:-1}.releases .release .image .pink{background-color:#ff3998;background-color:var(--pink)}.releases .release .card-container{align-items:center;display:flex;justify-content:center;overflow:hidden;position:relative;z-index:1}.releases .release .card-container .card-image img{height:14rem}.releases .release .card-container .ellipse{bottom:-45%;-webkit-filter:blur(100px);filter:blur(100px);height:20rem;left:0;position:absolute;width:20rem;z-index:-1}.releases .orange,.releases .release .card-container .orange{background-color:#ff8139;background-color:var(--orange)}.releases .green{background-color:#39ffa0;background-color:var(--green)}@media screen and (min-width:280px)and (max-width:1080px){.releases{gap:0;margin:0}.releases .release{border-radius:0;gap:2rem;grid-template-columns:1fr;padding:1rem 2rem}.releases .release:first-of-type .image{grid-row:1}.releases .release .content{padding:0}.releases .release .card-container,.releases .release .image{zoom:.5}.releases .release .ellipse{display:none!important}}.signup{border-bottom:.1rem solid #fff;border-top:.1rem solid #fff;overflow-y:hidden;padding-top:4rem}.signup .container{display:grid;font-size:18px;grid-template-columns:1fr 1fr}.signup .container .content{align-items:flex-start;display:flex;flex-direction:column;gap:2rem;margin-top:3rem}.signup .container .content .sub-title{color:#ff3998;color:var(--pink);letter-spacing:.1rem;text-transform:uppercase}.signup .container .content .title{color:#fff;color:var(--accent-color1)}.signup .container .content .description{color:#ccc;color:var(--accent-color3)}.signup .container .content button{background-clip:content-box,border-box;background-color:#111;background-color:var(--background);background-image:linear-gradient(hsla(0,0%,100%,0),hsla(0,0%,100%,0)),linear-gradient(101deg,#ff3998,#ff8139);background-image:linear-gradient(hsla(0,0%,100%,0),hsla(0,0%,100%,0)),linear-gradient(101deg,var(--pink),var(--orange));background-origin:border-box;border:3px solid transparent;border-radius:2rem;box-shadow:0 0 6px 0 rgba(157,96,212,.5);box-shadow:inset 2px 1000px 1px #111;box-shadow:2px 1000px 1px var(--background) inset;color:#fff;color:var(--accent-color1);cursor:pointer;font-weight:700;padding:1rem 3rem;transition:.5s ease-in-out}.signup .container .content button:hover{box-shadow:none}.signup .container .image-container{position:relative;text-align:center;z-index:10}.signup .container .image-container .ellipse-container .ellipse{-webkit-filter:blur(100px);filter:blur(100px);height:15rem;position:absolute;width:15rem;z-index:-1}.signup .container .image-container .ellipse-container .pink{background-color:#ff3998;background-color:var(--pink);right:40%;top:40%}.signup .container .image-container .ellipse-container .orange{background-color:#ff8139;background-color:var(--orange);bottom:40%;left:40%}@media screen and (min-width:280px)and (max-width:1080px){.signup{margin-top:1rem;overflow-x:hidden;padding:1rem;position:relative}.signup .container{font-size:16px;grid-template-columns:.7fr}.signup .container .image-container{position:absolute;right:-5%;top:30%}.signup .container .image-container .image img{height:10rem}.signup .container .image-container .ellipse-container .ellipse{-webkit-filter:blur(30px);filter:blur(30px);height:6rem;width:6rem}.signup .container .image-container .ellipse-container .pink{right:10%}.signup .container .image-container .ellipse-container .orange{left:-5%}}.like{margin:5rem 0}.like .container{grid-gap:4rem;display:grid;gap:4rem;grid-template-columns:1fr 1fr}.like .container .content{background-color:#555;background-color:var(--accent-color2);border-radius:2rem;display:flex;flex-direction:column;gap:2rem;padding:3rem}.like .container .content .title{color:#fff;color:var(--accent-color1)}.like .container .content .description{color:#ccc;color:var(--accent-color3);letter-spacing:.1rem;line-height:1.5rem}@media screen and (min-width:280px)and (max-width:1080px){.like{margin:0}.like .container{gap:0;grid-template-columns:1fr}.like .container .content{border-radius:0;padding:1rem 2rem}.like .container .content:nth-of-type(2){background-color:#111;background-color:var(--background)}}
2 | /*# sourceMappingURL=main.e5ae9a6c.css.map*/
--------------------------------------------------------------------------------
/build/static/css/main.e5ae9a6c.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"static/css/main.e5ae9a6c.css","mappings":"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","sources":["sass/base/_base.scss","sass/components/_scrollToTop.scss","sass/components/_navbar.scss","sass/components/_footer.scss","sass/components/_card.scss","sass/sections/_home.scss","sass/sections/_free.scss","sass/sections/_clients.scss","sass/sections/_superRare.scss","sass/sections/_release.scss","sass/sections/_signup.scss","sass/sections/_like.scss"],"sourcesContent":["@import url(\"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap\");\n:root {\n --orange: #ff8139;\n --pink: #ff3998;\n --green: #39ffa0;\n --red: #ff3939;\n --light-green: #edfff6;\n --light-orange: #fff0e8;\n --accent-color1: #ffffff;\n --accent-color2: #555555;\n --accent-color3: #cccccc;\n --card-color: #000000;\n --background: #111111;\n --font-family: \"Inter\", sans-serif;\n}\n\n[data-theme=\"light\"] {\n --background: #ffffff;\n --accent-color1: #000000;\n --accent-color2: #eeeeee;\n --accent-color3: #777777;\n --card-color: #eeeeee;\n}\n\n* {\n padding: 0;\n margin: 0;\n box-sizing: border-box;\n}\n\nhtml {\n scroll-behavior: smooth;\n}\n\n.app-container {\n background-color: var(--background);\n font-family: var(--font-family);\n overflow-x: hidden;\n transition: 0.5s ease-in-out;\n padding: 2rem 4rem;\n @media screen and (min-width: 280px) and (max-width: 1080px) {\n padding: 0;\n }\n}\n\n::-webkit-scrollbar {\n background-color: #111111;\n width: 0.2rem;\n}\n\n::-webkit-scrollbar-thumb {\n background-color: var(--orange);\n}\n",".scrollToTop {\n visibility: hidden;\n opacity: 0;\n transition: 0.5s ease-in-out;\n z-index: 100;\n position: fixed;\n bottom: 5%;\n right: 5%;\n border-radius: 5rem;\n background-color: red;\n height: 4rem;\n width: 4rem;\n border: solid 3px transparent;\n background-image: linear-gradient(\n rgba(255, 255, 255, 0),\n rgba(255, 255, 255, 0)\n ),\n linear-gradient(101deg, var(--pink), var(--orange));\n background-origin: border-box;\n background-clip: content-box, border-box;\n box-shadow: 2px 1000px 1px var(--background) inset;\n transition: 0.5s ease-in-out;\n cursor: pointer;\n display: flex;\n justify-content: center;\n align-items: center;\n &:hover {\n box-shadow: none;\n }\n a {\n svg {\n font-size: 2rem;\n color: var(--accent-color1);\n }\n }\n}\n\n.visible {\n visibility: visible;\n opacity: 1;\n}\n","nav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n .brand-container {\n .brand {\n img {\n height: 100%;\n }\n }\n .toggle-container {\n display: none;\n .toggle {\n }\n .mode {\n }\n }\n }\n .links-container {\n .links {\n list-style-type: none;\n display: flex;\n gap: 4rem;\n li {\n .dark {\n color: black;\n }\n .light {\n color: yellow;\n }\n a {\n color: var(--accent-color3);\n text-decoration: none;\n }\n &:last-of-type {\n a {\n color: var(--pink);\n }\n }\n }\n }\n }\n}\n\n[data-theme=\"light\"] {\n nav {\n .brand-container {\n .brand {\n img {\n filter: brightness(0);\n }\n }\n }\n }\n}\n\n@media screen and (min-width: 280px) and (max-width: 1080px) {\n nav {\n position: relative;\n padding: 1rem 2rem;\n .brand-container {\n display: flex;\n justify-content: space-between;\n align-items: center;\n width: 100%;\n .brand {\n img {\n height: 1.5rem;\n }\n }\n .toggle-container {\n display: block;\n color: var(--accent-color1);\n display: flex;\n flex-direction: row-reverse;\n gap: 1rem;\n z-index: 40;\n .toggle {\n z-index: 40;\n display: block;\n }\n }\n }\n .links-container {\n z-index: 30;\n background-image: linear-gradient(101deg, var(--pink), var(--orange));\n height: 100vh;\n position: absolute;\n top: 0;\n right: 0;\n opacity: 0;\n width: 0;\n visibility: hidden;\n display: flex;\n justify-content: center;\n align-items: center;\n transition: 0.5s ease-in-out;\n .links {\n flex-direction: column;\n li {\n a {\n color: var(--background);\n }\n &:last-of-type {\n display: none;\n }\n }\n }\n }\n .nav-visible {\n width: 60vw;\n visibility: visible;\n opacity: 1;\n }\n }\n}\n","footer {\n margin: 6rem 0;\n display: flex;\n flex-direction: column;\n gap: 5rem;\n .upper {\n display: flex;\n justify-content: space-between;\n color: var(--accent-color3);\n .brand-container {\n display: flex;\n flex-direction: column;\n gap: 1.5rem;\n .brand {\n img {\n }\n }\n p {\n }\n ul {\n list-style-type: none;\n display: flex;\n gap: 1rem;\n li {\n }\n }\n }\n .links {\n display: flex;\n gap: 8rem;\n .link {\n display: flex;\n flex-direction: column;\n gap: 2rem;\n h4 {\n color: var(--accent-color1);\n text-transform: uppercase;\n }\n ul {\n list-style-type: none;\n display: flex;\n flex-direction: column;\n gap: 1rem;\n li {\n }\n }\n }\n }\n }\n .lower {\n display: flex;\n justify-content: space-between;\n span {\n color: var(--accent-color3);\n }\n }\n}\n\n[data-theme=\"light\"] {\n footer {\n .brand-container {\n .brand {\n img {\n filter: brightness(0);\n }\n }\n }\n }\n}\n\n@media screen and (min-width: 280px) and (max-width: 1080px) {\n footer {\n margin: 0;\n gap: 2rem;\n padding: 1rem 2rem;\n .upper {\n flex-direction: column;\n gap: 2rem;\n .links {\n display: grid;\n grid-template-columns: 1fr 1fr;\n gap: 2rem;\n .link {\n gap: 1rem;\n }\n }\n }\n .lower {\n flex-direction: column;\n gap: 1rem;\n }\n }\n}\n",".card {\n background-color: var(--card-color);\n width: max-content;\n border-radius: 1rem;\n &-image {\n img {\n }\n }\n &-content {\n display: flex;\n flex-direction: column;\n gap: 0.5rem;\n padding: 1rem;\n .card-heading {\n display: flex;\n justify-content: space-between;\n .card-series {\n color: var(--orange);\n text-transform: uppercase;\n font-size: 0.7rem;\n }\n .card-top {\n color: var(--accent-color3);\n text-transform: uppercase;\n font-size: 0.7rem;\n }\n }\n .card-details {\n display: flex;\n justify-content: space-between;\n color: var(--accent-color1);\n .card-title {\n }\n .card-price {\n display: flex;\n gap: 1rem;\n img {\n }\n h4 {\n }\n }\n }\n .card-sub-details {\n display: flex;\n justify-content: space-between;\n span {\n color: var(--accent-color3);\n font-size: 0.9rem;\n }\n }\n }\n}\n",".home {\n margin-top: 6rem;\n .container {\n display: grid;\n grid-template-columns: 1fr 1fr;\n font-size: 32px;\n .content {\n margin-top: 3rem;\n display: flex;\n flex-direction: column;\n gap: 2rem;\n align-items: flex-start;\n .sub-title {\n color: var(--pink);\n text-transform: uppercase;\n letter-spacing: 0.1rem;\n }\n .title {\n color: var(--accent-color1);\n }\n .description {\n color: var(--accent-color3);\n }\n button {\n color: var(--accent-color1);\n background-color: var(--background);\n font-weight: bold;\n padding: 1rem 3rem;\n border-radius: 2rem;\n box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);\n border: solid 3px transparent;\n background-image: linear-gradient(\n rgba(255, 255, 255, 0),\n rgba(255, 255, 255, 0)\n ),\n linear-gradient(101deg, var(--pink), var(--orange));\n background-origin: border-box;\n background-clip: content-box, border-box;\n box-shadow: 2px 1000px 1px var(--background) inset;\n transition: 0.5s ease-in-out;\n cursor: pointer;\n &:hover {\n box-shadow: none;\n }\n }\n }\n .image-container {\n text-align: center;\n position: relative;\n z-index: 10;\n .image {\n img {\n }\n }\n .ellipse-container {\n .ellipse {\n z-index: -1;\n position: absolute;\n height: 15rem;\n width: 15rem;\n filter: blur(100px);\n }\n .pink {\n top: 40%;\n right: 40%;\n background-color: var(--pink);\n }\n .orange {\n bottom: 40%;\n left: 40%;\n background-color: var(--orange);\n }\n }\n }\n }\n}\n\n@media screen and (min-width: 280px) and (max-width: 1080px) {\n .home {\n padding: 1rem;\n position: relative;\n overflow-x: hidden;\n margin-top: 1rem;\n .container {\n font-size: 16px;\n grid-template-columns: 0.7fr;\n .image-container {\n position: absolute;\n right: -10%;\n top: 30%;\n .image {\n img {\n height: 10rem;\n }\n }\n .ellipse-container {\n .ellipse {\n height: 6rem;\n width: 6rem;\n filter: blur(30px);\n }\n .pink {\n right: 10%;\n }\n .orange {\n left: -5%;\n }\n }\n }\n }\n }\n}\n",".free {\n position: relative;\n margin: 5rem 0;\n .container {\n display: flex;\n background-color: var(--orange);\n position: relative;\n height: 25rem;\n border-radius: 1rem;\n overflow: hidden;\n z-index: 1;\n .background {\n z-index: -1;\n .ellipse {\n position: absolute;\n height: 100%;\n width: 28rem;\n border-radius: 100%;\n filter: blur(100px);\n }\n .pink {\n top: -10%;\n left: -15%;\n background-color: var(--pink);\n }\n .green {\n top: -10%;\n right: -15%;\n background-color: var(--green);\n }\n }\n .content {\n z-index: 1;\n display: flex;\n flex-direction: column;\n gap: 1.5rem;\n padding-top: 3rem;\n padding-left: 5rem;\n font-size: 1.3rem;\n .image {\n img {\n }\n }\n .title {\n font-size: 2rem;\n }\n .description {\n }\n }\n }\n .cards {\n display: flex;\n position: absolute;\n top: -2rem;\n right: 40%;\n .card1 {\n top: 0;\n position: absolute;\n transform: rotate(-10deg);\n z-index: 3;\n font-size: 0.6rem;\n .card-image {\n img {\n height: 10rem;\n width: 12rem;\n }\n }\n }\n .card2 {\n top: 0;\n z-index: 2;\n position: absolute;\n left: 10rem;\n transform: rotate(5deg);\n font-size: 0.7rem;\n .card-image {\n img {\n height: 10rem;\n }\n }\n }\n }\n @media screen and (min-width: 280px) and (max-width: 1080px) {\n margin: 0;\n .container {\n padding: 1rem 2rem;\n height: 40vh;\n border-radius: 0;\n .background {\n .pink {\n left: -70%;\n }\n .green {\n right: -100%;\n }\n }\n .content {\n padding: 0;\n font-size: 16px;\n gap: 1rem;\n .title {\n font-size: 22px;\n }\n }\n }\n .cards {\n .card1,\n .card2 {\n zoom: 0.3;\n }\n }\n }\n}\n",".clients {\n padding: 6rem 0;\n .container {\n .clients-container {\n display: grid;\n grid-template-columns: repeat(5, 1fr);\n text-align: center;\n .client {\n img {\n }\n }\n }\n }\n @media screen and (min-width: 280px) and (max-width: 1080px) {\n padding: 1rem 2rem;\n .container {\n .clients-container {\n grid-template-columns: repeat(2, 1fr);\n text-align: left;\n gap: 1rem;\n\n .client {\n &:nth-of-type(5) {\n display: none;\n }\n img {\n height: 1.5rem;\n }\n }\n }\n }\n }\n}\n",".super-rare {\n display: flex;\n flex-direction: column;\n gap: 2rem;\n .title-container {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n .title {\n color: var(--accent-color1);\n font-size: 2.4rem;\n }\n .description {\n color: var(--accent-color3);\n a {\n color: var(--accent-color3);\n font-weight: bold;\n }\n }\n }\n .cards {\n display: flex;\n justify-content: space-evenly;\n gap: 5rem;\n }\n}\n\n@media screen and (min-width: 280px) and (max-width: 1080px) {\n .super-rare {\n padding: 1rem 2rem;\n width: 100vw;\n .cards {\n overflow: auto;\n justify-content: flex-start;\n gap: 2rem;\n padding-left: 1.5rem;\n &::-webkit-scrollbar {\n display: none;\n }\n .card {\n zoom: 0.7;\n }\n }\n }\n}\n",".releases {\n margin: 5rem 0;\n display: flex;\n flex-direction: column;\n gap: 5rem;\n .release {\n display: grid;\n grid-template-columns: 1fr 1fr;\n border-radius: 0.5rem;\n .content {\n padding: 5rem 8rem;\n\n display: flex;\n flex-direction: column;\n gap: 2rem;\n .title {\n font-size: 2rem;\n }\n .description {\n font-size: 1.3rem;\n a {\n color: black;\n font-weight: bold;\n }\n }\n .link {\n color: black;\n font-weight: bold;\n text-decoration: none;\n display: flex;\n gap: 1rem;\n svg {\n font-size: 1.2rem;\n }\n }\n }\n .image {\n position: relative;\n overflow: hidden;\n text-align: center;\n z-index: 1;\n display: flex;\n justify-content: center;\n align-items: flex-end;\n img {\n height: 24rem;\n }\n .ellipse {\n z-index: -1;\n position: absolute;\n bottom: -40%;\n right: 0;\n height: 20rem;\n width: 20rem;\n filter: blur(100px);\n }\n .pink {\n background-color: var(--pink);\n }\n }\n .card-container {\n display: flex;\n justify-content: center;\n align-items: center;\n position: relative;\n z-index: 1;\n overflow: hidden;\n .card-image {\n img {\n height: 14rem;\n }\n }\n .ellipse {\n z-index: -1;\n position: absolute;\n bottom: -45%;\n left: 0;\n height: 20rem;\n width: 20rem;\n filter: blur(100px);\n }\n .orange {\n background-color: var(--orange);\n }\n }\n }\n .orange {\n background-color: var(--orange);\n }\n .green {\n background-color: var(--green);\n }\n}\n\n@media screen and (min-width: 280px) and (max-width: 1080px) {\n .releases {\n margin: 0;\n gap: 0;\n .release {\n border-radius: 0;\n grid-template-columns: 1fr;\n padding: 1rem 2rem;\n gap: 2rem;\n &:nth-of-type(1) {\n .image {\n grid-row: 1;\n }\n }\n .content {\n padding: 0;\n }\n .image {\n zoom: 0.5;\n }\n .card-container {\n zoom: 0.5;\n }\n .ellipse {\n display: none !important;\n }\n }\n }\n}\n",".signup {\n border-top: 0.1rem solid white;\n border-bottom: 0.1rem solid white;\n padding-top: 4rem;\n overflow-y: hidden;\n .container {\n display: grid;\n grid-template-columns: 1fr 1fr;\n font-size: 18px;\n .content {\n margin-top: 3rem;\n display: flex;\n flex-direction: column;\n gap: 2rem;\n align-items: flex-start;\n .sub-title {\n color: var(--pink);\n text-transform: uppercase;\n letter-spacing: 0.1rem;\n }\n .title {\n color: var(--accent-color1);\n }\n .description {\n color: var(--accent-color3);\n }\n button {\n color: var(--accent-color1);\n background-color: var(--background);\n font-weight: bold;\n padding: 1rem 3rem;\n border-radius: 2rem;\n box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);\n border: solid 3px transparent;\n background-image: linear-gradient(\n rgba(255, 255, 255, 0),\n rgba(255, 255, 255, 0)\n ),\n linear-gradient(101deg, var(--pink), var(--orange));\n background-origin: border-box;\n background-clip: content-box, border-box;\n box-shadow: 2px 1000px 1px var(--background) inset;\n transition: 0.5s ease-in-out;\n cursor: pointer;\n &:hover {\n box-shadow: none;\n }\n }\n }\n .image-container {\n text-align: center;\n position: relative;\n z-index: 10;\n .image {\n img {\n }\n }\n .ellipse-container {\n .ellipse {\n z-index: -1;\n position: absolute;\n height: 15rem;\n width: 15rem;\n filter: blur(100px);\n }\n .pink {\n top: 40%;\n right: 40%;\n background-color: var(--pink);\n }\n .orange {\n bottom: 40%;\n left: 40%;\n background-color: var(--orange);\n }\n }\n }\n }\n}\n\n@media screen and (min-width: 280px) and (max-width: 1080px) {\n .signup {\n padding: 1rem;\n position: relative;\n overflow-x: hidden;\n margin-top: 1rem;\n .container {\n font-size: 16px;\n grid-template-columns: 0.7fr;\n .image-container {\n position: absolute;\n right: -5%;\n top: 30%;\n .image {\n img {\n height: 10rem;\n }\n }\n .ellipse-container {\n .ellipse {\n height: 6rem;\n width: 6rem;\n filter: blur(30px);\n }\n .pink {\n right: 10%;\n }\n .orange {\n left: -5%;\n }\n }\n }\n }\n }\n}\n",".like {\n margin: 5rem 0;\n .container {\n display: grid;\n grid-template-columns: 1fr 1fr;\n gap: 4rem;\n .content {\n background-color: var(--accent-color2);\n display: flex;\n flex-direction: column;\n gap: 2rem;\n padding: 3rem;\n border-radius: 2rem;\n .image {\n img {\n }\n }\n .title {\n color: var(--accent-color1);\n }\n .description {\n color: var(--accent-color3);\n letter-spacing: 0.1rem;\n line-height: 1.5rem;\n }\n }\n }\n}\n\n@media screen and (min-width: 280px) and (max-width: 1080px) {\n .like {\n margin: 0;\n .container {\n grid-template-columns: 1fr;\n gap: 0;\n .content {\n padding: 1rem 2rem;\n border-radius: 0;\n &:nth-of-type(2) {\n background-color: var(--background);\n }\n }\n }\n }\n}\n"],"names":[],"sourceRoot":""}
--------------------------------------------------------------------------------
/build/static/js/main.b44e377c.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /*
2 | object-assign
3 | (c) Sindre Sorhus
4 | @license MIT
5 | */
6 |
7 | /*! @license Rematrix v0.3.0
8 |
9 | Copyright 2018 Julian Lloyd.
10 |
11 | Permission is hereby granted, free of charge, to any person obtaining a copy
12 | of this software and associated documentation files (the "Software"), to deal
13 | in the Software without restriction, including without limitation the rights
14 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 | copies of the Software, and to permit persons to whom the Software is
16 | furnished to do so, subject to the following conditions:
17 |
18 | The above copyright notice and this permission notice shall be included in
19 | all copies or substantial portions of the Software.
20 |
21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 | THE SOFTWARE.
28 | */
29 |
30 | /*! @license Tealight v0.3.6
31 |
32 | Copyright 2018 Fisssion LLC.
33 |
34 | Permission is hereby granted, free of charge, to any person obtaining a copy
35 | of this software and associated documentation files (the "Software"), to deal
36 | in the Software without restriction, including without limitation the rights
37 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
38 | copies of the Software, and to permit persons to whom the Software is
39 | furnished to do so, subject to the following conditions:
40 |
41 | The above copyright notice and this permission notice shall be included in all
42 | copies or substantial portions of the Software.
43 |
44 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
47 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
49 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
50 | SOFTWARE.
51 |
52 | */
53 |
54 | /*! @license is-dom-node v1.0.4
55 |
56 | Copyright 2018 Fisssion LLC.
57 |
58 | Permission is hereby granted, free of charge, to any person obtaining a copy
59 | of this software and associated documentation files (the "Software"), to deal
60 | in the Software without restriction, including without limitation the rights
61 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
62 | copies of the Software, and to permit persons to whom the Software is
63 | furnished to do so, subject to the following conditions:
64 |
65 | The above copyright notice and this permission notice shall be included in all
66 | copies or substantial portions of the Software.
67 |
68 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
69 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
70 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
71 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
72 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
73 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
74 | SOFTWARE.
75 |
76 | */
77 |
78 | /*! @license is-dom-node-list v1.2.1
79 |
80 | Copyright 2018 Fisssion LLC.
81 |
82 | Permission is hereby granted, free of charge, to any person obtaining a copy
83 | of this software and associated documentation files (the "Software"), to deal
84 | in the Software without restriction, including without limitation the rights
85 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
86 | copies of the Software, and to permit persons to whom the Software is
87 | furnished to do so, subject to the following conditions:
88 |
89 | The above copyright notice and this permission notice shall be included in all
90 | copies or substantial portions of the Software.
91 |
92 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
93 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
94 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
95 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
96 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
97 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
98 | SOFTWARE.
99 |
100 | */
101 |
102 | /*! @license miniraf v1.0.0
103 |
104 | Copyright 2018 Fisssion LLC.
105 |
106 | Permission is hereby granted, free of charge, to any person obtaining a copy
107 | of this software and associated documentation files (the "Software"), to deal
108 | in the Software without restriction, including without limitation the rights
109 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
110 | copies of the Software, and to permit persons to whom the Software is
111 | furnished to do so, subject to the following conditions:
112 |
113 | The above copyright notice and this permission notice shall be included in all
114 | copies or substantial portions of the Software.
115 |
116 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
117 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
118 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
119 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
120 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
121 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
122 | SOFTWARE.
123 |
124 | */
125 |
126 | /** @license React v0.20.2
127 | * scheduler.production.min.js
128 | *
129 | * Copyright (c) Facebook, Inc. and its affiliates.
130 | *
131 | * This source code is licensed under the MIT license found in the
132 | * LICENSE file in the root directory of this source tree.
133 | */
134 |
135 | /** @license React v17.0.2
136 | * react-dom.production.min.js
137 | *
138 | * Copyright (c) Facebook, Inc. and its affiliates.
139 | *
140 | * This source code is licensed under the MIT license found in the
141 | * LICENSE file in the root directory of this source tree.
142 | */
143 |
144 | /** @license React v17.0.2
145 | * react-jsx-runtime.production.min.js
146 | *
147 | * Copyright (c) Facebook, Inc. and its affiliates.
148 | *
149 | * This source code is licensed under the MIT license found in the
150 | * LICENSE file in the root directory of this source tree.
151 | */
152 |
153 | /** @license React v17.0.2
154 | * react.production.min.js
155 | *
156 | * Copyright (c) Facebook, Inc. and its affiliates.
157 | *
158 | * This source code is licensed under the MIT license found in the
159 | * LICENSE file in the root directory of this source tree.
160 | */
161 |
--------------------------------------------------------------------------------
/build/static/media/home.7fc4253ec840bd813401.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/static/media/home.7fc4253ec840bd813401.png
--------------------------------------------------------------------------------
/build/static/media/release1.0c482aba7d6da2c3e9bb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/static/media/release1.0c482aba7d6da2c3e9bb.png
--------------------------------------------------------------------------------
/build/static/media/release2.d54e21ff9ecf711580c1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/static/media/release2.d54e21ff9ecf711580c1.png
--------------------------------------------------------------------------------
/build/static/media/signup.12cb0fcd7fcce38eca10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/static/media/signup.12cb0fcd7fcce38eca10.png
--------------------------------------------------------------------------------
/build/static/media/super1.1fbdfb3ac7255099ffbb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/static/media/super1.1fbdfb3ac7255099ffbb.png
--------------------------------------------------------------------------------
/build/static/media/super2.3dd3ef03cdf3bdd7f265.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/static/media/super2.3dd3ef03cdf3bdd7f265.png
--------------------------------------------------------------------------------
/build/static/media/super3.190d195b791351c19c67.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/static/media/super3.190d195b791351c19c67.png
--------------------------------------------------------------------------------
/build/static/media/super4.cb4b74964859a8dd6ecb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/build/static/media/super4.cb4b74964859a8dd6ecb.png
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nft-website",
3 | "version": "0.1.0",
4 | "private": true,
5 | "homepage": ".",
6 | "dependencies": {
7 | "@testing-library/jest-dom": "^5.16.2",
8 | "@testing-library/react": "^12.1.2",
9 | "@testing-library/user-event": "^13.5.0",
10 | "react": "^17.0.2",
11 | "react-dom": "^17.0.2",
12 | "react-icons": "^4.3.1",
13 | "react-scripts": "5.0.0",
14 | "sass": "^1.49.7",
15 | "scrollreveal": "^4.0.9",
16 | "web-vitals": "^2.1.4"
17 | },
18 | "scripts": {
19 | "start": "react-scripts start",
20 | "build": "react-scripts build",
21 | "test": "react-scripts test",
22 | "eject": "react-scripts eject"
23 | },
24 | "eslintConfig": {
25 | "extends": [
26 | "react-app",
27 | "react-app/jest"
28 | ]
29 | },
30 | "browserslist": {
31 | "production": [
32 | ">0.2%",
33 | "not dead",
34 | "not op_mini all"
35 | ],
36 | "development": [
37 | "last 1 chrome version",
38 | "last 1 firefox version",
39 | "last 1 safari version"
40 | ]
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/public/favicon.ico
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | React App
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-nft-landing/b406ac601a695bbf77eb8c371cc07bad1111f9d0/public/logo512.png
--------------------------------------------------------------------------------
/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import React, { useState, useEffect } from "react";
2 | import Clients from "./components/Clients";
3 | import Footer from "./components/Footer";
4 | import Free from "./components/Free";
5 | import Home from "./components/Home";
6 | import Like from "./components/Like";
7 | import Navbar from "./components/Navbar";
8 | import Release from "./components/Release";
9 | import ScrollToTop from "./components/ScrollToTop";
10 | import Signup from "./components/Signup";
11 | import SuperRare from "./components/SuperRare";
12 | import scrollreveal from "scrollreveal";
13 | import "./sass/index.scss";
14 | function App() {
15 | const [theme, setTheme] = useState("dark");
16 | const changeTheme = () => {
17 | theme === "dark" ? setTheme("light") : setTheme("dark");
18 | };
19 | useEffect(() => {
20 | const registerAnimations = () => {
21 | const sr = scrollreveal({
22 | origin: "bottom",
23 | distance: "80px",
24 | duration: 2000,
25 | reset: false,
26 | });
27 | sr.reveal(
28 | `
29 | nav,
30 | .home,
31 | .free,
32 | .clients,
33 | .super-rare,
34 | .releases,
35 | .like,
36 | .signup,
37 | footer
38 | `,
39 | {
40 | interval: 500,
41 | }
42 | );
43 | };
44 | registerAnimations();
45 | }, []);
46 | window.setTimeout(() => {
47 | const home = document.getElementsByClassName("home");
48 | home[0].style.transform = "none";
49 | const nav = document.getElementsByTagName("nav");
50 | nav[0].style.transform = "none";
51 | }, 1500);
52 | return (
53 |
15 | Don't miss out on the release of our new NFT. Sign up below to
16 | recieve updates when we go live on 11/22.
17 |
18 |
19 | Don't miss out on the release of our new NFT. Sign up below to
20 | recieve updates when we go live on 11/22. Don't miss out on the
21 | release of our new NFT.
22 |
23 |
24 |
25 |
26 |
27 |
28 |
An NFT like no other
29 |
30 | Don't miss out on the release of our new NFT. Sign up below to
31 | recieve updates when we go live on 11/22.
32 |
33 |
34 | Don't miss out on the release of our new NFT. Sign up below to
35 | recieve updates when we go live on 11/22. Don't miss out on the
36 | release of our new NFT.
37 |
38 |
39 |
40 |
41 | );
42 | }
43 |
--------------------------------------------------------------------------------
/src/components/Navbar.jsx:
--------------------------------------------------------------------------------
1 | import React, { useState } from "react";
2 | import { GiHamburgerMenu } from "react-icons/gi";
3 | import { MdClose } from "react-icons/md";
4 | import { ImSun } from "react-icons/im";
5 | import { BsFillMoonFill } from "react-icons/bs";
6 | import logo from "../assets/logo.png";
7 | export default function Navbar({ changeTheme, currentTheme }) {
8 | const [navState, setNavState] = useState(false);
9 | return (
10 |
56 | );
57 | }
58 |
--------------------------------------------------------------------------------
/src/components/Release.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { BsArrowRight } from "react-icons/bs";
3 | import release1 from "../assets/release1.png";
4 | import release2 from "../assets/release2.png";
5 | import Card from "./Card";
6 |
7 | export default function Release() {
8 | return (
9 |
10 |
11 |
12 |
Initial Release 4/11
13 |
14 | We have released four limited edition NFTs early which can be bid on
15 | via OpenSea
16 |
17 |
18 | There will be the only four of these NFTs we ever make, so be sure
19 | not to miss out!
20 |