├── .gitignore ├── README.md ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── assets │ ├── double.png │ ├── laptop.jpg │ ├── single.png │ └── triple.png ├── components │ ├── Analytics.jsx │ ├── Cards.jsx │ ├── Footer.jsx │ ├── Hero.jsx │ ├── Navbar.jsx │ └── Newsletter.jsx ├── index.css └── index.js ├── tailwind.config.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 | ### `yarn 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 | ### `yarn 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 | ### `yarn 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 | ### `yarn 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 | ### `yarn 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "data-finance-yt", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.14.1", 7 | "@testing-library/react": "^13.0.0", 8 | "@testing-library/user-event": "^13.2.1", 9 | "react": "^18.0.0", 10 | "react-dom": "^18.0.0", 11 | "react-icons": "^4.3.1", 12 | "react-scripts": "5.0.1", 13 | "react-typed": "^1.2.0", 14 | "web-vitals": "^2.1.0" 15 | }, 16 | "scripts": { 17 | "start": "react-scripts start", 18 | "build": "react-scripts build", 19 | "test": "react-scripts test", 20 | "eject": "react-scripts eject" 21 | }, 22 | "eslintConfig": { 23 | "extends": [ 24 | "react-app", 25 | "react-app/jest" 26 | ] 27 | }, 28 | "browserslist": { 29 | "production": [ 30 | ">0.2%", 31 | "not dead", 32 | "not op_mini all" 33 | ], 34 | "development": [ 35 | "last 1 chrome version", 36 | "last 1 firefox version", 37 | "last 1 safari version" 38 | ] 39 | }, 40 | "devDependencies": { 41 | "autoprefixer": "^10.4.4", 42 | "postcss": "^8.4.12", 43 | "tailwindcss": "^3.0.24" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/data-finance-react-tailwind/ec24b02a5398c2bc55bba4a4e51d207e3d6fdb05/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/fireclint/data-finance-react-tailwind/ec24b02a5398c2bc55bba4a4e51d207e3d6fdb05/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/data-finance-react-tailwind/ec24b02a5398c2bc55bba4a4e51d207e3d6fdb05/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 Analytics from './components/Analytics'; 3 | import Cards from './components/Cards'; 4 | import Footer from './components/Footer'; 5 | import Hero from './components/Hero'; 6 | import Navbar from './components/Navbar'; 7 | import Newsletter from './components/Newsletter'; 8 | 9 | function App() { 10 | return ( 11 |
12 | 13 | 14 | 15 | 16 | 17 |
19 | ); 20 | } 21 | 22 | export default App; 23 | -------------------------------------------------------------------------------- /src/assets/double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/data-finance-react-tailwind/ec24b02a5398c2bc55bba4a4e51d207e3d6fdb05/src/assets/double.png -------------------------------------------------------------------------------- /src/assets/laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/data-finance-react-tailwind/ec24b02a5398c2bc55bba4a4e51d207e3d6fdb05/src/assets/laptop.jpg -------------------------------------------------------------------------------- /src/assets/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/data-finance-react-tailwind/ec24b02a5398c2bc55bba4a4e51d207e3d6fdb05/src/assets/single.png -------------------------------------------------------------------------------- /src/assets/triple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/data-finance-react-tailwind/ec24b02a5398c2bc55bba4a4e51d207e3d6fdb05/src/assets/triple.png -------------------------------------------------------------------------------- /src/components/Analytics.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Laptop from '../assets/laptop.jpg'; 3 | 4 | const Analytics = () => { 5 | return ( 6 |
7 |
8 | / 9 |
10 |

DATA ANALYTICS DASHBOARD

11 |

Manage Data Analytics Centrally

12 |

13 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum 14 | molestiae delectus culpa hic assumenda, voluptate reprehenderit 15 | dolore autem cum ullam sed odit perspiciatis. Doloribus quos velit, 16 | eveniet ex deserunt fuga? 17 |

18 | 19 |
20 |
21 |
22 | ); 23 | }; 24 | 25 | export default Analytics; 26 | -------------------------------------------------------------------------------- /src/components/Cards.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Single from '../assets/single.png' 3 | import Double from '../assets/double.png' 4 | import Triple from '../assets/triple.png' 5 | 6 | const Cards = () => { 7 | return ( 8 |
9 |
10 |
11 | / 12 |

Single User

13 |

$149

14 |
15 |

500 GB Storage

16 |

1 Granted User

17 |

Send up to 2 GB

18 |
19 | 20 |
21 |
22 | / 23 |

Single User

24 |

$149

25 |
26 |

500 GB Storage

27 |

1 Granted User

28 |

Send up to 2 GB

29 |
30 | 31 |
32 |
33 | / 34 |

Single User

35 |

$149

36 |
37 |

500 GB Storage

38 |

1 Granted User

39 |

Send up to 2 GB

40 |
41 | 42 |
43 |
44 |
45 | ); 46 | }; 47 | 48 | export default Cards; 49 | -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { 3 | FaDribbbleSquare, 4 | FaFacebookSquare, 5 | FaGithubSquare, 6 | FaInstagram, 7 | FaTwitterSquare, 8 | } from 'react-icons/fa'; 9 | 10 | const Footer = () => { 11 | return ( 12 |
13 |
14 |

REACT.

15 |

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Id odit ullam iste repellat consequatur libero reiciendis, blanditiis accusantium.

16 |
17 | 18 | 19 | 20 | 21 | 22 |
23 |
24 |
25 |
26 |
Solutions
27 |
    28 |
  • Analytics
  • 29 |
  • Marketing
  • 30 |
  • Commerce
  • 31 |
  • Insights
  • 32 |
33 |
34 |
35 |
Support
36 |
    37 |
  • Pricing
  • 38 |
  • Documentation
  • 39 |
  • Guides
  • 40 |
  • API Status
  • 41 |
42 |
43 |
44 |
Company
45 |
    46 |
  • About
  • 47 |
  • Blog
  • 48 |
  • Jobs
  • 49 |
  • Press
  • 50 |
  • Careers
  • 51 |
52 |
53 |
54 |
Legal
55 |
    56 |
  • Claim
  • 57 |
  • Policy
  • 58 |
  • Terms
  • 59 |
60 |
61 |
62 |
63 | ); 64 | }; 65 | 66 | export default Footer; 67 | -------------------------------------------------------------------------------- /src/components/Hero.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Typed from 'react-typed'; 3 | 4 | const Hero = () => { 5 | return ( 6 |
7 |
8 |

9 | GROWING WITH DATA ANALYTICS 10 |

11 |

12 | Grow with data. 13 |

14 |
15 |

16 | Fast, flexible financing for 17 |

18 | 25 |
26 |

Monitor your data analytics to increase revenue for BTB, BTC, & SASS platforms.

27 | 28 |
29 |
30 | ); 31 | }; 32 | 33 | export default Hero; 34 | -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react'; 2 | import { AiOutlineClose, AiOutlineMenu } from 'react-icons/ai'; 3 | 4 | const Navbar = () => { 5 | const [nav, setNav] = useState(false); 6 | 7 | const handleNav = () => { 8 | setNav(!nav); 9 | }; 10 | 11 | return ( 12 |
13 |

REACT.

14 | 21 |
22 | {nav ? : } 23 |
24 | 32 |
33 | ); 34 | }; 35 | 36 | export default Navbar; 37 | -------------------------------------------------------------------------------- /src/components/Newsletter.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | const Newsletter = () => { 4 | return ( 5 |
6 |
7 |
8 |

9 | Want tips & tricks to optimize your flow? 10 |

11 |

Sign up to our newsletter and stay up to date.

12 |
13 |
14 |
15 | 20 | 23 |
24 |

25 | We care bout the protection of your data. Read our{' '} 26 | Privacy Policy. 27 |

28 |
29 |
30 |
31 | ); 32 | }; 33 | 34 | export default Newsletter; 35 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | body { 6 | background-color: #000300; 7 | } -------------------------------------------------------------------------------- /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 | 13 | 14 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | content: ['./src/**/*.{js,jsx,ts,tsx}'], 3 | theme: { 4 | extend: {}, 5 | }, 6 | plugins: [], 7 | }; 8 | --------------------------------------------------------------------------------