├── .gitignore
├── README.md
├── build
├── asset-manifest.json
├── favicon.ico
├── index.html
├── logo192.png
├── logo512.png
├── manifest.json
├── robots.txt
└── static
│ ├── css
│ ├── main.6e442237.css
│ └── main.6e442237.css.map
│ ├── js
│ ├── main.f4e87256.js
│ ├── main.f4e87256.js.LICENSE.txt
│ └── main.f4e87256.js.map
│ └── media
│ ├── about.6713d5aa6adaddde4f7a.png
│ ├── card.f9017bf395d5cc4917d5.png
│ ├── cards.c40e6d333024dffc029c.png
│ ├── home.a9136be591eabf538074.png
│ ├── signupBackground.a9042bba874ddb162045.png
│ └── spacemen.2b581b08cad1126d0e93.png
├── package-lock.json
├── package.json
├── public
├── favicon.ico
├── index.html
├── logo192.png
├── logo512.png
├── manifest.json
└── robots.txt
├── src
├── App.js
├── assets
│ ├── about.png
│ ├── badge-percent.png
│ ├── bitcoin.png
│ ├── card.png
│ ├── cards.png
│ ├── ethereum.png
│ ├── ggcoin.png
│ ├── home.png
│ ├── price1.png
│ ├── price2.png
│ ├── price3.png
│ ├── price4.png
│ ├── service1.png
│ ├── service2.png
│ ├── service3.png
│ ├── signupBackground.png
│ └── spacemen.png
├── components
│ ├── AboutUs.jsx
│ ├── Button.jsx
│ ├── DailyPrices.jsx
│ ├── Footer.jsx
│ ├── Home.jsx
│ ├── Navbar.jsx
│ ├── Newsletter.jsx
│ ├── Roadmap.jsx
│ ├── ScrollToTop.jsx
│ ├── Services.jsx
│ └── SignUp.jsx
├── index.css
└── index.js
└── 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.6e442237.css",
4 | "main.js": "./static/js/main.f4e87256.js",
5 | "static/media/about.png": "./static/media/about.6713d5aa6adaddde4f7a.png",
6 | "static/media/home.png": "./static/media/home.a9136be591eabf538074.png",
7 | "static/media/spacemen.png": "./static/media/spacemen.2b581b08cad1126d0e93.png",
8 | "static/media/card.png": "./static/media/card.f9017bf395d5cc4917d5.png",
9 | "static/media/signupBackground.png": "./static/media/signupBackground.a9042bba874ddb162045.png",
10 | "static/media/cards.png": "./static/media/cards.c40e6d333024dffc029c.png",
11 | "index.html": "./index.html",
12 | "main.6e442237.css.map": "./static/css/main.6e442237.css.map",
13 | "main.f4e87256.js.map": "./static/js/main.f4e87256.js.map"
14 | },
15 | "entrypoints": [
16 | "static/css/main.6e442237.css",
17 | "static/js/main.f4e87256.js"
18 | ]
19 | }
--------------------------------------------------------------------------------
/build/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/build/favicon.ico
--------------------------------------------------------------------------------
/build/index.html:
--------------------------------------------------------------------------------
1 |
React App You need to enable JavaScript to run this app.
--------------------------------------------------------------------------------
/build/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/build/logo192.png
--------------------------------------------------------------------------------
/build/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/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.6e442237.css:
--------------------------------------------------------------------------------
1 | *{box-sizing:border-box;margin:0;padding:0}:root{--primary:#fff;--background:#030922;--dark-background:#02071b;--input-background:#091030;--roadmap-icon:#6b81d9;--text-blue:#2499f9;--blue:#1457ed;--green:#50fc61;--red:#f33;--subdue-button:#021338fa}html{scroll-behavior:smooth}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#030922;background-color:var(--background);color:#fff;color:var(--primary);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}ul>li{cursor:pointer}nav,section{margin:0 5rem 8rem}.blue{color:#2499f9;color:var(--text-blue)}.subdue{opacity:.7}ul{list-style-type:none}a{color:#fff;color:var(--primary);text-decoration:none}.flex{display:flex}.column{flex-direction:column}.a-center{align-items:center}.a-start{align-items:flex-start}.j-center{justify-content:center}.j-between{justify-content:space-between}.gap{gap:4rem}.gap-half{gap:.5rem}.gap-1{gap:1rem}.gap-2{gap:2rem}.text-center{text-align:center}h1{font-size:4rem}h2{font-size:2rem}p{font-size:1.2rem;line-height:1.8rem;word-spacing:.2rem}.half-width{height:80vh}::-webkit-scrollbar{background-color:#030922;background-color:var(--background);width:.5rem}::-webkit-scrollbar-thumb{background-color:#1457ed;background-color:var(--blue)}@media screen and (min-width:280px) and (max-width:1080px){nav,section{margin:0 1rem 2rem}.flex{flex-direction:column}.gap{gap:1rem}.gap-1,.gap-2{gap:.5rem}.half-width{height:100%;width:80vw}h1{font-size:2rem}p{font-size:1.1rem;line-height:1.5rem;word-spacing:.2rem}}
2 | /*# sourceMappingURL=main.6e442237.css.map*/
--------------------------------------------------------------------------------
/build/static/css/main.6e442237.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"static/css/main.6e442237.css","mappings":"AAAA,EAGE,qBAAsB,CAFtB,QAAS,CACT,SAEF,CAEA,MACE,cAAkB,CAClB,oBAAqB,CACrB,yBAA0B,CAC1B,0BAA2B,CAC3B,sBAAuB,CACvB,mBAAoB,CACpB,cAAe,CACf,eAAgB,CAChB,UAAc,CACd,yBACF,CAEA,KACE,sBACF,CAEA,KAOE,kCAAmC,CACnC,iCAAkC,CAPlC,wBAAmC,CAAnC,kCAAmC,CACnC,UAAqB,CAArB,oBAAqB,CAErB,mIAKF,CAEA,MACE,cACF,CACA,YAGE,kBACF,CAEA,MACE,aAAuB,CAAvB,sBACF,CAEA,QACE,UACF,CAEA,GACE,oBACF,CAEA,EACE,UAAqB,CAArB,oBAAqB,CACrB,oBACF,CAEA,MACE,YACF,CAEA,QACE,qBACF,CAEA,UACE,kBACF,CAEA,SACE,sBACF,CAEA,UACE,sBACF,CAEA,WACE,6BACF,CAEA,KACE,QACF,CAEA,UACE,SACF,CAEA,OACE,QACF,CAEA,OACE,QACF,CAEA,aACE,iBACF,CAEA,GACE,cACF,CAEA,GACE,cACF,CAEA,EACE,gBAAiB,CAEjB,kBAAmB,CADnB,kBAEF,CAEA,YACE,WACF,CAEA,oBAEE,wBAAmC,CAAnC,kCAAmC,CADnC,WAEF,CAEA,0BACE,wBAA6B,CAA7B,4BACF,CAEA,2DACE,YAGE,kBACF,CACA,MACE,qBACF,CACA,KACE,QACF,CAMA,cACE,SACF,CACA,YAEE,WAAY,CADZ,UAEF,CACA,GACE,cACF,CACA,EACE,gBAAiB,CAEjB,kBAAmB,CADnB,kBAEF,CACF","sources":["index.css"],"sourcesContent":["* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\n:root {\n --primary: #ffffff;\n --background: #030922;\n --dark-background: #02071b;\n --input-background: #091030;\n --roadmap-icon: #6b81d9;\n --text-blue: #2499f9;\n --blue: #1457ed;\n --green: #50fc61;\n --red: #ff3333;\n --subdue-button: #021338fa;\n}\n\nhtml {\n scroll-behavior: smooth;\n}\n\nbody {\n background-color: var(--background);\n color: var(--primary);\n\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\",\n \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\nul > li {\n cursor: pointer;\n}\nnav,\nsection {\n margin: 0 5rem;\n margin-bottom: 8rem;\n}\n\n.blue {\n color: var(--text-blue);\n}\n\n.subdue {\n opacity: 0.7;\n}\n\nul {\n list-style-type: none;\n}\n\na {\n color: var(--primary);\n text-decoration: none;\n}\n\n.flex {\n display: flex;\n}\n\n.column {\n flex-direction: column;\n}\n\n.a-center {\n align-items: center;\n}\n\n.a-start {\n align-items: flex-start;\n}\n\n.j-center {\n justify-content: center;\n}\n\n.j-between {\n justify-content: space-between;\n}\n\n.gap {\n gap: 4rem;\n}\n\n.gap-half {\n gap: 0.5rem;\n}\n\n.gap-1 {\n gap: 1rem;\n}\n\n.gap-2 {\n gap: 2rem;\n}\n\n.text-center {\n text-align: center;\n}\n\nh1 {\n font-size: 4rem;\n}\n\nh2 {\n font-size: 2rem;\n}\n\np {\n font-size: 1.2rem;\n word-spacing: 0.2rem;\n line-height: 1.8rem;\n}\n\n.half-width {\n height: 80vh;\n}\n\n::-webkit-scrollbar {\n width: 0.5rem;\n background-color: var(--background);\n}\n\n::-webkit-scrollbar-thumb {\n background-color: var(--blue);\n}\n\n@media screen and (min-width: 280px) and (max-width: 1080px) {\n nav,\n section {\n margin: 0 1rem;\n margin-bottom: 2rem;\n }\n .flex {\n flex-direction: column;\n }\n .gap {\n gap: 1rem;\n }\n\n .gap-1 {\n gap: 0.5rem;\n }\n\n .gap-2 {\n gap: 0.5rem;\n }\n .half-width {\n width: 80vw;\n height: 100%;\n }\n h1 {\n font-size: 2rem;\n }\n p {\n font-size: 1.1rem;\n word-spacing: 0.2rem;\n line-height: 1.5rem;\n }\n}\n"],"names":[],"sourceRoot":""}
--------------------------------------------------------------------------------
/build/static/js/main.f4e87256.js.LICENSE.txt:
--------------------------------------------------------------------------------
1 | /**
2 | * @license React
3 | * react-dom.production.min.js
4 | *
5 | * Copyright (c) Facebook, Inc. and its affiliates.
6 | *
7 | * This source code is licensed under the MIT license found in the
8 | * LICENSE file in the root directory of this source tree.
9 | */
10 |
11 | /**
12 | * @license React
13 | * react-jsx-runtime.production.min.js
14 | *
15 | * Copyright (c) Facebook, Inc. and its affiliates.
16 | *
17 | * This source code is licensed under the MIT license found in the
18 | * LICENSE file in the root directory of this source tree.
19 | */
20 |
21 | /**
22 | * @license React
23 | * react.production.min.js
24 | *
25 | * Copyright (c) Facebook, Inc. and its affiliates.
26 | *
27 | * This source code is licensed under the MIT license found in the
28 | * LICENSE file in the root directory of this source tree.
29 | */
30 |
31 | /**
32 | * @license React
33 | * scheduler.production.min.js
34 | *
35 | * Copyright (c) Facebook, Inc. and its affiliates.
36 | *
37 | * This source code is licensed under the MIT license found in the
38 | * LICENSE file in the root directory of this source tree.
39 | */
40 |
41 | /** @license React v16.13.1
42 | * react-is.production.min.js
43 | *
44 | * Copyright (c) Facebook, Inc. and its affiliates.
45 | *
46 | * This source code is licensed under the MIT license found in the
47 | * LICENSE file in the root directory of this source tree.
48 | */
49 |
--------------------------------------------------------------------------------
/build/static/media/about.6713d5aa6adaddde4f7a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/build/static/media/about.6713d5aa6adaddde4f7a.png
--------------------------------------------------------------------------------
/build/static/media/card.f9017bf395d5cc4917d5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/build/static/media/card.f9017bf395d5cc4917d5.png
--------------------------------------------------------------------------------
/build/static/media/cards.c40e6d333024dffc029c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/build/static/media/cards.c40e6d333024dffc029c.png
--------------------------------------------------------------------------------
/build/static/media/home.a9136be591eabf538074.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/build/static/media/home.a9136be591eabf538074.png
--------------------------------------------------------------------------------
/build/static/media/signupBackground.a9042bba874ddb162045.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/build/static/media/signupBackground.a9042bba874ddb162045.png
--------------------------------------------------------------------------------
/build/static/media/spacemen.2b581b08cad1126d0e93.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/build/static/media/spacemen.2b581b08cad1126d0e93.png
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "coinbase-landing-page",
3 | "version": "0.1.0",
4 | "homepage": ".",
5 | "private": true,
6 | "dependencies": {
7 | "@testing-library/jest-dom": "^5.16.4",
8 | "@testing-library/react": "^13.2.0",
9 | "@testing-library/user-event": "^13.5.0",
10 | "react": "^18.1.0",
11 | "react-dom": "^18.1.0",
12 | "react-icons": "^4.3.1",
13 | "react-scripts": "5.0.1",
14 | "styled-components": "^5.3.5",
15 | "web-vitals": "^2.1.4"
16 | },
17 | "scripts": {
18 | "start": "react-scripts start",
19 | "build": "react-scripts build",
20 | "test": "react-scripts test",
21 | "eject": "react-scripts eject"
22 | },
23 | "eslintConfig": {
24 | "extends": [
25 | "react-app",
26 | "react-app/jest"
27 | ]
28 | },
29 | "browserslist": {
30 | "production": [
31 | ">0.2%",
32 | "not dead",
33 | "not op_mini all"
34 | ],
35 | "development": [
36 | "last 1 chrome version",
37 | "last 1 firefox version",
38 | "last 1 safari version"
39 | ]
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/public/favicon.ico
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | React App
28 |
29 |
30 | You need to enable JavaScript to run this app.
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/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 from "react";
2 | import AboutUs from "./components/AboutUs";
3 | import DailyPrices from "./components/DailyPrices";
4 | import Footer from "./components/Footer";
5 | import Home from "./components/Home";
6 | import Navbar from "./components/Navbar";
7 | import Newsletter from "./components/Newsletter";
8 | import Roadmap from "./components/Roadmap";
9 | import ScrollToTop from "./components/ScrollToTop";
10 | import Services from "./components/Services";
11 | import SignUp from "./components/SignUp";
12 |
13 | export default function App() {
14 | return (
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | );
28 | }
29 |
--------------------------------------------------------------------------------
/src/assets/about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/about.png
--------------------------------------------------------------------------------
/src/assets/badge-percent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/badge-percent.png
--------------------------------------------------------------------------------
/src/assets/bitcoin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/bitcoin.png
--------------------------------------------------------------------------------
/src/assets/card.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/card.png
--------------------------------------------------------------------------------
/src/assets/cards.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/cards.png
--------------------------------------------------------------------------------
/src/assets/ethereum.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/ethereum.png
--------------------------------------------------------------------------------
/src/assets/ggcoin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/ggcoin.png
--------------------------------------------------------------------------------
/src/assets/home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/home.png
--------------------------------------------------------------------------------
/src/assets/price1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/price1.png
--------------------------------------------------------------------------------
/src/assets/price2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/price2.png
--------------------------------------------------------------------------------
/src/assets/price3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/price3.png
--------------------------------------------------------------------------------
/src/assets/price4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/price4.png
--------------------------------------------------------------------------------
/src/assets/service1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/service1.png
--------------------------------------------------------------------------------
/src/assets/service2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/service2.png
--------------------------------------------------------------------------------
/src/assets/service3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/service3.png
--------------------------------------------------------------------------------
/src/assets/signupBackground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/signupBackground.png
--------------------------------------------------------------------------------
/src/assets/spacemen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/koolkishan/react-coinbase-landing/0ca7b9c783da779e3e6415c80d325cf33bf3bfcd/src/assets/spacemen.png
--------------------------------------------------------------------------------
/src/components/AboutUs.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import { FaChevronCircleRight } from "react-icons/fa";
4 |
5 | import about from "../assets/about.png";
6 | import Button from "./Button";
7 | export default function AboutUs() {
8 | return (
9 |
10 |
11 |
12 |
13 |
About Us
14 |
15 |
16 |
Why would You Choose Market Watchmen?
17 |
18 |
19 |
20 |
21 |
Easy To Learn Platform –
22 |
23 | We won’t ask you to link to your bank accounts, we just want
24 | everyone to have the opportunity to understand the potential of
25 | saving and investing for retirement or short term goals. We simply
26 | do data analytics and simplify the way you look at investment
27 | assets
28 |
29 |
} />
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 | );
38 | }
39 | const Section = styled.section`
40 | @media screen and (min-width: 280px) and (max-width: 1080px) {
41 | .title-container {
42 | text-align: center;
43 | }
44 | }
45 | `;
46 |
--------------------------------------------------------------------------------
/src/components/Button.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | export default function Button({ text, icon = false, subduedButton = false }) {
4 | return (
5 |
6 | {icon ? (
7 |
12 | {text}
13 | {icon}
14 |
15 | ) : (
16 |
17 | {text}
18 |
19 | )}
20 |
21 | );
22 | }
23 |
24 | const Div = styled.div`
25 | button {
26 | padding: 0.7rem 1.3rem;
27 | background-color: var(--blue);
28 | color: white;
29 | border: none;
30 | border-radius: 0.5rem;
31 | font-size: 1.1rem;
32 | font-weight: bolder;
33 | cursor: pointer;
34 | }
35 | .subduedBtn {
36 | background-color: var(--subdue-button);
37 | }
38 | @media screen and (min-width: 280px) and (max-width: 1080px) {
39 | flex-direction: row;
40 | button {
41 | flex-direction: row;
42 | }
43 | }
44 | `;
45 |
--------------------------------------------------------------------------------
/src/components/DailyPrices.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import price1 from "../assets/price1.png";
4 | import price2 from "../assets/price2.png";
5 | import price3 from "../assets/price3.png";
6 | import price4 from "../assets/price4.png";
7 | import bitcoin from "../assets/bitcoin.png";
8 | import ethereum from "../assets/ethereum.png";
9 | import ggcoin from "../assets/ggcoin.png";
10 |
11 | export default function DailyPrices() {
12 | const data = [
13 | {
14 | name: "Bitcoin",
15 | image: bitcoin,
16 | short: "BTC",
17 | price: "$33,592.99",
18 | change: "+4.3%",
19 | marketCap: "$635.14B",
20 | chart: price1,
21 | },
22 | {
23 | name: "Ethereum",
24 | image: ethereum,
25 | short: "ETH",
26 | price: "$2,273.19",
27 | change: "+2.1%",
28 | marketCap: "$267.12B",
29 | chart: price2,
30 | },
31 | {
32 | name: "GGCoin",
33 | image: ggcoin,
34 | short: "GGC",
35 | price: "$349.47",
36 | change: "-7.9%",
37 | marketCap: "$57.16B",
38 | chart: price3,
39 | },
40 | {
41 | name: "Bitcoin",
42 | image: bitcoin,
43 | short: "BTC",
44 | price: "$0.9434",
45 | change: "0.0%",
46 | marketCap: "$27.12B",
47 | chart: price4,
48 | },
49 | ];
50 | const getPriceChangeClassName = (change) => {
51 | const changeNum = change[0];
52 | if (changeNum === "+") return "green";
53 | else if (changeNum === "-") return "red";
54 | else return;
55 | };
56 | return (
57 |
58 |
59 |
60 | #
61 | Name
62 | Price
63 | Change
64 | Market Cap
65 | Chart
66 |
67 |
68 | {data.map(
69 | (
70 | { name, image, short, price, change, marketCap, chart },
71 | index
72 | ) => {
73 | return (
74 |
75 |
{index + 1}
76 |
77 |
78 |
79 |
80 |
{name}
81 |
{short}
82 |
83 |
{price}
84 |
85 | {change}
86 |
87 |
{marketCap}
88 |
89 |
90 |
91 |
92 | );
93 | }
94 | )}
95 |
96 |
97 |
98 | );
99 | }
100 |
101 | const Section = styled.section`
102 | background-color: #ffffff10;
103 | border-radius: 1rem;
104 | .header {
105 | border-bottom: 1px solid #ffffff42;
106 | padding-bottom: 1rem;
107 | padding: 2rem;
108 | span {
109 | }
110 | }
111 | .header,
112 | .data > .row {
113 | display: grid;
114 | grid-template-columns: 0.5fr 2fr 1fr 1fr 1fr 0.5fr;
115 | }
116 |
117 | .data {
118 | padding: 0 2rem 2rem 2rem;
119 | .row {
120 | .name {
121 | display: flex;
122 | }
123 | }
124 | }
125 |
126 | span {
127 | display: block;
128 | }
129 | .green {
130 | color: var(--green);
131 | }
132 |
133 | .red {
134 | color: var(--red);
135 | }
136 | @media screen and (min-width: 280px) and (max-width: 1080px) {
137 | max-width: 90vw;
138 | overflow-y: auto;
139 | border-radius: 0;
140 | ::-webkit-scrollbar {
141 | height: 1px;
142 | }
143 | .container {
144 | width: 780px;
145 | .header {
146 | }
147 | .name {
148 | flex-direction: row;
149 | }
150 | }
151 | }
152 | `;
153 |
--------------------------------------------------------------------------------
/src/components/Footer.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import { BsFacebook, BsTwitter, BsYoutube } from "react-icons/bs";
4 | import spacemen from "../assets/spacemen.png";
5 | import cards from "../assets/cards.png";
6 | export default function Footer() {
7 | const companyLinks = [
8 | "About",
9 | "Careers",
10 | "Affiliates",
11 | "Blog",
12 | "Press",
13 | "Investors",
14 | "Legal & Privacy",
15 | "Cookie policy",
16 | "Cookie preferences",
17 | ];
18 | const LearnLinks = [
19 | "Browse crypto prices",
20 | "Coinbase Bytes newsletter",
21 | "Crypto basics",
22 | "Tips & Turoials",
23 | "Market Updates",
24 | "What is Bitcoin?",
25 | "What is crypto?",
26 | "What is a blockchain?",
27 | "How to set up a crypto waller",
28 | "How to send crypto",
29 | ];
30 | const socialIcons = [ , , ];
31 | return (
32 |
33 |
34 |
35 |
36 |
Coinbase
37 |
38 |
39 |
GymVast, 18 East 50th Street, 4th Floor, New York, NY 10022
40 |
41 |
42 | T : +1-202-555-0184
43 | E : hello@cryptoz.com
44 |
45 |
46 | {socialIcons.map((icon, index) => {
47 | return (
48 |
49 | {icon}
50 |
51 | );
52 | })}
53 |
54 |
55 |
56 |
57 |
Company
58 |
59 |
60 | {companyLinks.map((link) => {
61 | return {link} ;
62 | })}
63 |
64 |
65 |
66 |
67 |
Learn
68 |
69 |
70 | {LearnLinks.map((link) => {
71 | return {link} ;
72 | })}
73 |
74 |
75 |
76 |
77 |
Company
78 |
79 |
80 | {companyLinks.map((link) => {
81 | return {link} ;
82 | })}
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 | © Crypto a Theme by Kishan Sheth
94 |
95 |
96 |
Privacy Policy
97 |
Terms & Conditions
98 |
99 |
100 |
101 |
102 |
103 |
104 | );
105 | }
106 |
107 | const Foot = styled.footer`
108 | padding: 0rem 5rem;
109 | padding-bottom: 3rem;
110 | position: relative;
111 | .upper-footer {
112 | display: grid;
113 | grid-template-columns: repeat(4, 1fr);
114 | gap: 1rem;
115 | .social-icons {
116 | margin-top: 2rem;
117 | svg {
118 | font-size: 2rem;
119 | }
120 | }
121 | .spacemen {
122 | position: absolute;
123 | right: 0rem;
124 | top: -23rem;
125 | }
126 | }
127 | @media screen and (min-width: 280px) and (max-width: 1080px) {
128 | padding: 1rem 2rem;
129 | .social-icons {
130 | display: none;
131 | flex-direction: row;
132 | }
133 | .upper-footer {
134 | grid-template-columns: 1fr;
135 | gap: 2rem;
136 | }
137 | .spacemen {
138 | display: none;
139 | }
140 | .cards {
141 | img {
142 | width: 80vw;
143 | }
144 | }
145 | }
146 | `;
147 |
--------------------------------------------------------------------------------
/src/components/Home.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import { FaChevronCircleRight } from "react-icons/fa";
4 | import home from "../assets/home.png";
5 | import badgePercent from "../assets/badge-percent.png";
6 | import Button from "./Button";
7 |
8 | export default function Home() {
9 | return (
10 |
11 |
12 |
13 |
14 |
15 |
16 | {" "}
17 | Investment made easy
18 |
19 |
20 |
21 |
The Easies Way to Track Multiple Currencies
22 |
23 |
24 |
25 | Market Watchman allow you tu monitor your balances, trade without,
26 | limits and earn rewards for specific coins.
27 |
28 |
29 |
30 | } />
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 | );
39 | }
40 |
41 | const Section = styled.section`
42 | @media screen and (min-width: 280px) and (max-width: 1080px) {
43 | .subtitle {
44 | h3 {
45 | flex-direction: row;
46 | }
47 | }
48 | .buttons {
49 | flex-direction: row;
50 | margin: 2rem 0;
51 | gap: 1rem;
52 | }
53 | }
54 | `;
55 |
--------------------------------------------------------------------------------
/src/components/Navbar.jsx:
--------------------------------------------------------------------------------
1 | import React, { useState } from "react";
2 | import styled from "styled-components";
3 | import { GiHamburgerMenu } from "react-icons/gi";
4 | import { MdClose } from "react-icons/md";
5 | import Button from "./Button";
6 |
7 | export default function Navbar() {
8 | const links = ["Home", "Dashboard", "Learn", "FAQ", "Contact", "About"];
9 | const [isNavOpen, setIsNavOpen] = useState(false);
10 | const html = document.querySelector("html");
11 | html.addEventListener("click", (e) => setIsNavOpen(false));
12 | return (
13 |
14 |
15 |
Coinbase
16 |
17 |
18 | {isNavOpen ? (
19 | setIsNavOpen(false)} />
20 | ) : (
21 | {
23 | e.stopPropagation();
24 | setIsNavOpen(true);
25 | }}
26 | />
27 | )}
28 |
29 |
30 |
31 | {links.map((link) => {
32 | return (
33 |
34 | {link}
35 |
36 | );
37 | })}
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | );
46 | }
47 |
48 | const Nav = styled.nav`
49 | margin: 3rem 5rem;
50 | .brand {
51 | h2 {
52 | font-size: 2.5rem;
53 | }
54 | }
55 | .toggle {
56 | display: none;
57 | }
58 | .links {
59 | ul {
60 | font-weight: bolder;
61 | li {
62 | cursor: pointer;
63 | &:first-of-type {
64 | a {
65 | opacity: 1;
66 | }
67 | }
68 | a {
69 | opacity: 0.7;
70 | transition: 0.5s ease-in-out;
71 | &:hover {
72 | opacity: initial;
73 | }
74 | }
75 | }
76 | }
77 | }
78 |
79 | @media screen and (min-width: 280px) and (max-width: 1080px) {
80 | padding: 3rem 1rem;
81 | margin: 0;
82 | position: relative;
83 | z-index: 5;
84 | flex-direction: row;
85 | .brand {
86 | h2 {
87 | font-size: 2rem;
88 | }
89 | }
90 | .toggle {
91 | padding-right: 1rem;
92 | display: block;
93 | z-index: 51;
94 | svg {
95 | color: #2d69fd;
96 | }
97 | }
98 | .show {
99 | opacity: 1 !important;
100 | visibility: visible !important;
101 | }
102 | .links {
103 | z-index: 10;
104 | position: fixed;
105 | overflow-x: hidden;
106 | top: 0;
107 | right: 0;
108 | width: ${({ state }) => (state ? "60%" : "0%")};
109 | height: 100vh;
110 | background-color: white;
111 | opacity: 0;
112 | visibility: hidden;
113 | transition: 0.7s ease-in-out;
114 | ul {
115 | flex-direction: column;
116 | text-align: center;
117 | height: 100%;
118 | justify-content: center;
119 | li {
120 | a {
121 | color: #2d69fd;
122 | }
123 | }
124 | }
125 | }
126 | .auth {
127 | display: none;
128 | }
129 | }
130 | `;
131 |
--------------------------------------------------------------------------------
/src/components/Newsletter.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import { AiOutlineMail } from "react-icons/ai";
4 | import Button from "./Button";
5 | export default function Newsletter() {
6 | return (
7 |
8 |
9 |
Newsletter
10 |
11 | Get now free 20% discount for all products on your first order
12 |
13 |
14 |
21 |
22 | );
23 | }
24 |
25 | const Section = styled.section`
26 | margin: 0;
27 | margin-bottom: 8rem;
28 | background-color: var(--dark-background);
29 | padding: 8rem;
30 | .newsletter {
31 | .input-container {
32 | background-color: var(--input-background);
33 | padding: 1rem;
34 | padding-right: 8rem;
35 | border-radius: 0.5rem;
36 | font-size: 1.3rem;
37 | color: white;
38 | input {
39 | background-color: transparent;
40 | border: none;
41 | font-size: 1.2rem;
42 | color: white;
43 | &:focus {
44 | outline: none;
45 | }
46 | }
47 | }
48 | }
49 | @media screen and (min-width: 280px) and (max-width: 1080px) {
50 | padding: 2rem;
51 | margin-bottom: 2rem;
52 | .newsletter {
53 | .input-container {
54 | flex-direction: row;
55 | padding-right: 1rem;
56 | input {
57 | }
58 | }
59 | }
60 | }
61 | `;
62 |
--------------------------------------------------------------------------------
/src/components/Roadmap.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import {
4 | RiGoogleFill,
5 | RiAppleFill,
6 | RiAmazonFill,
7 | RiBitCoinFill,
8 | } from "react-icons/ri";
9 | export default function Roadmap() {
10 | const data = [
11 | {
12 | date: "July 2012",
13 | name: "Google",
14 | description:
15 | "Let's say you invested $1,000 right before the 2008 crash and left your money there. Price for Vanguard 500 Index Fund Admiral Shares $143 (VFIAX), highest ever. Dropped to $68 in 2009. Current price $430.52.",
16 | icon: ,
17 | },
18 | {
19 | date: "July 2014",
20 | name: "Apple",
21 | description:
22 | "Assume you invested $1,000 in Apple, the stock price has never been higher at this point in time at $9.05. Current price $173.07.",
23 | icon: ,
24 | },
25 | {
26 | date: "July 2018",
27 | name: "Amazon",
28 | description:
29 | "Assume you invested $1,000 in a Tech Vanguard ETF at a $52 cost (VITAX). Current price $221.94",
30 | icon: ,
31 | },
32 | {
33 | date: "July 2022",
34 | name: "Bitcoin",
35 | description:
36 | "Assume you invested $1,000 in Bitcoin. Price for one Bitcoin was $17,098, later it dropped to $3,500 per Bitcoin before bouncing to over $60,000 in 2021. Current price over $42,629.",
37 | icon: ,
38 | },
39 | {
40 | date: "July 2012",
41 | name: "Google",
42 | description:
43 | "Let's say you invested $1,000 right before the 2008 crash and left your money there. Price for Vanguard 500 Index Fund Admiral Shares $143 (VFIAX), highest ever. Dropped to $68 in 2009. Current price $430.52.",
44 | icon: ,
45 | },
46 | {
47 | date: "July 2014",
48 | name: "Apple",
49 | description:
50 | "Assume you invested $1,000 in Apple, the stock price has never been higher at this point in time at $9.05. Current price $173.07.",
51 | icon: ,
52 | },
53 | {
54 | date: "July 2018",
55 | name: "Amazon",
56 | description:
57 | "Assume you invested $1,000 in a Tech Vanguard ETF at a $52 cost (VITAX). Current price $221.94",
58 | icon: ,
59 | },
60 | {
61 | date: "July 2022",
62 | name: "Bitcoin",
63 | description:
64 | "Assume you invested $1,000 in Bitcoin. Price for one Bitcoin was $17,098, later it dropped to $3,500 per Bitcoin before bouncing to over $60,000 in 2021. Current price over $42,629.",
65 | icon: ,
66 | },
67 | ];
68 | return (
69 |
70 |
71 |
72 |
Roadmap
73 |
74 |
75 |
How Investing Can Change Your Future
76 |
77 |
78 |
79 | {data.map(({ date, name, description, icon }, index) => {
80 | return (
81 |
82 |
{icon}
83 |
{date}
84 |
{name}
85 |
{description}
86 |
87 | );
88 | })}
89 |
90 |
91 | );
92 | }
93 |
94 | const Section = styled.section`
95 | .roadmap {
96 | overflow-x: scroll;
97 | overflow-y: hidden;
98 | padding-bottom: 4rem;
99 | &::-webkit-scrollbar {
100 | height: 1px;
101 | }
102 | .map {
103 | min-width: 300px;
104 | position: relative;
105 | &::after {
106 | content: "";
107 | position: absolute;
108 | top: 1.3rem;
109 | left: 1rem;
110 | height: 100%;
111 | width: 120%;
112 | z-index: -1;
113 | border-top: 3px solid white;
114 | opacity: 0.5;
115 | }
116 | .icon {
117 | background-color: var(--roadmap-icon);
118 | padding: 0.5rem;
119 | border-radius: 100%;
120 |
121 | svg {
122 | font-size: 2rem;
123 | }
124 | }
125 | }
126 | }
127 | @media screen and (min-width: 280px) and (max-width: 1080px) {
128 | padding: 2rem;
129 |
130 | .roadmap {
131 | overflow: initial;
132 | padding-bottom: 2rem;
133 | .map {
134 | min-width: 100%;
135 | }
136 | .map::after {
137 | border-top: none;
138 | }
139 | }
140 | }
141 | `;
142 |
--------------------------------------------------------------------------------
/src/components/ScrollToTop.jsx:
--------------------------------------------------------------------------------
1 | import React, { useState } from "react";
2 | import styled from "styled-components";
3 | import { FaChevronUp } from "react-icons/fa";
4 | function ScrollToTop() {
5 | const [visible, setVisible] = useState(false);
6 | window.addEventListener("scroll", () => {
7 | window.pageYOffset > 100 ? setVisible(true) : setVisible(false);
8 | });
9 |
10 | return (
11 |
16 | );
17 | }
18 |
19 | const Div = styled.div`
20 | max-width: 100vw;
21 | .none {
22 | opacity: 0;
23 | visibility: hidden;
24 | }
25 | a {
26 | position: fixed;
27 | bottom: 40px;
28 | right: 40px;
29 | background-color: var(--blue);
30 | padding: 1rem;
31 | border-radius: 100%;
32 | display: flex;
33 | justify-content: center;
34 | align-items: center;
35 | transition: 0.4s ease-in-out;
36 | z-index: 25;
37 | svg {
38 | color: white;
39 | font-size: 1.3rem;
40 | }
41 | @media screen and (min-width: 280px) and (max-width: 1080px) {
42 | left: 75vw;
43 | right: initial;
44 | }
45 | }
46 | `;
47 |
48 | export default ScrollToTop;
49 |
--------------------------------------------------------------------------------
/src/components/Services.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import service1 from "../assets/service1.png";
4 | import service2 from "../assets/service2.png";
5 | import service3 from "../assets/service3.png";
6 |
7 | export default function Services() {
8 | const servicesData = [
9 | {
10 | image: service1,
11 | title: "Manage your portfolio",
12 | descrption:
13 | "Coinbase supports a variety of the most popular digital currencies.",
14 | },
15 | {
16 | image: service2,
17 | title: "Recurring buys",
18 | descrption:
19 | "Coinbase supports a variety of the most popular digital currencies.",
20 | },
21 | {
22 | image: service3,
23 | title: "Mobile apps",
24 | descrption:
25 | "Coinbase supports a variety of the most popular digital currencies.",
26 | },
27 | ];
28 | return (
29 |
30 |
31 |
32 |
Start your trading with us
33 |
34 |
35 |
36 | Market Watchmen has a variety of features that make it the best
37 | place to start trading
38 |
39 |
40 |
41 |
42 | {servicesData.map(({ image, title, descrption }) => {
43 | return (
44 |
45 |
46 |
47 |
48 |
{title}
49 |
{descrption}
50 |
51 | );
52 | })}
53 |
54 |
55 | );
56 | }
57 | const Section = styled.section`
58 | .services {
59 | padding: 0 5rem;
60 | gap: 10rem;
61 | .service {
62 | .title {
63 | font-size: 1.5rem;
64 | }
65 | .description {
66 | font-size: 1rem;
67 | line-height: 1.2rem;
68 | }
69 | }
70 | }
71 | @media screen and (min-width: 280px) and (max-width: 1080px) {
72 | .services {
73 | padding: 2rem;
74 | gap: 3rem;
75 | }
76 | }
77 | `;
78 |
--------------------------------------------------------------------------------
/src/components/SignUp.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import styled from "styled-components";
3 | import card from "../assets/card.png";
4 | import signupBackground from "../assets/signupBackground.png";
5 |
6 | export default function SignUp() {
7 | return (
8 |
9 |
10 |
Sign up without any bank account linking and card
11 |
12 |
13 |
14 |
15 |
16 | );
17 | }
18 | const Section = styled.section`
19 | background-image: url(${signupBackground});
20 | background-size: contain;
21 | margin: 0;
22 | margin-bottom: 8rem;
23 | max-width: 100vw;
24 | overflow: hidden;
25 | .content {
26 | padding: 8rem;
27 | h2 {
28 | font-size: 2.4rem;
29 | }
30 | }
31 | .image {
32 | img {
33 | height: 100%;
34 | }
35 | }
36 | @media screen and (min-width: 280px) and (max-width: 1080px) {
37 | margin-bottom: 2rem;
38 | .content {
39 | padding: 2rem;
40 | h2 {
41 | font-size: 1.5rem;
42 | }
43 | }
44 | .image {
45 | display: none;
46 | }
47 | }
48 | `;
49 |
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | * {
2 | margin: 0;
3 | padding: 0;
4 | box-sizing: border-box;
5 | }
6 |
7 | :root {
8 | --primary: #ffffff;
9 | --background: #030922;
10 | --dark-background: #02071b;
11 | --input-background: #091030;
12 | --roadmap-icon: #6b81d9;
13 | --text-blue: #2499f9;
14 | --blue: #1457ed;
15 | --green: #50fc61;
16 | --red: #ff3333;
17 | --subdue-button: #021338fa;
18 | }
19 |
20 | html {
21 | scroll-behavior: smooth;
22 | }
23 |
24 | body {
25 | background-color: var(--background);
26 | color: var(--primary);
27 |
28 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
29 | "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
30 | sans-serif;
31 | -webkit-font-smoothing: antialiased;
32 | -moz-osx-font-smoothing: grayscale;
33 | }
34 |
35 | ul > li {
36 | cursor: pointer;
37 | }
38 | nav,
39 | section {
40 | margin: 0 5rem;
41 | margin-bottom: 8rem;
42 | }
43 |
44 | .blue {
45 | color: var(--text-blue);
46 | }
47 |
48 | .subdue {
49 | opacity: 0.7;
50 | }
51 |
52 | ul {
53 | list-style-type: none;
54 | }
55 |
56 | a {
57 | color: var(--primary);
58 | text-decoration: none;
59 | }
60 |
61 | .flex {
62 | display: flex;
63 | }
64 |
65 | .column {
66 | flex-direction: column;
67 | }
68 |
69 | .a-center {
70 | align-items: center;
71 | }
72 |
73 | .a-start {
74 | align-items: flex-start;
75 | }
76 |
77 | .j-center {
78 | justify-content: center;
79 | }
80 |
81 | .j-between {
82 | justify-content: space-between;
83 | }
84 |
85 | .gap {
86 | gap: 4rem;
87 | }
88 |
89 | .gap-half {
90 | gap: 0.5rem;
91 | }
92 |
93 | .gap-1 {
94 | gap: 1rem;
95 | }
96 |
97 | .gap-2 {
98 | gap: 2rem;
99 | }
100 |
101 | .text-center {
102 | text-align: center;
103 | }
104 |
105 | h1 {
106 | font-size: 4rem;
107 | }
108 |
109 | h2 {
110 | font-size: 2rem;
111 | }
112 |
113 | p {
114 | font-size: 1.2rem;
115 | word-spacing: 0.2rem;
116 | line-height: 1.8rem;
117 | }
118 |
119 | .half-width {
120 | height: 80vh;
121 | }
122 |
123 | ::-webkit-scrollbar {
124 | width: 0.5rem;
125 | background-color: var(--background);
126 | }
127 |
128 | ::-webkit-scrollbar-thumb {
129 | background-color: var(--blue);
130 | }
131 |
132 | @media screen and (min-width: 280px) and (max-width: 1080px) {
133 | nav,
134 | section {
135 | margin: 0 1rem;
136 | margin-bottom: 2rem;
137 | }
138 | .flex {
139 | flex-direction: column;
140 | }
141 | .gap {
142 | gap: 1rem;
143 | }
144 |
145 | .gap-1 {
146 | gap: 0.5rem;
147 | }
148 |
149 | .gap-2 {
150 | gap: 0.5rem;
151 | }
152 | .half-width {
153 | width: 80vw;
154 | height: 100%;
155 | }
156 | h1 {
157 | font-size: 2rem;
158 | }
159 | p {
160 | font-size: 1.1rem;
161 | word-spacing: 0.2rem;
162 | line-height: 1.5rem;
163 | }
164 | }
165 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import ReactDOM from "react-dom/client";
3 | import "./index.css";
4 | import App from "./App";
5 |
6 | const root = ReactDOM.createRoot(document.getElementById("root"));
7 | root.render(
8 |
9 |
10 |
11 | );
12 |
--------------------------------------------------------------------------------