├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ ├── Discount.svg │ ├── Send.svg │ ├── Shield.svg │ ├── Star.svg │ ├── airbnb.png │ ├── apple.svg │ ├── arrow-up.svg │ ├── bill.png │ ├── binance.png │ ├── card.png │ ├── close.svg │ ├── coinbase.png │ ├── dropbox.png │ ├── facebook.svg │ ├── google.svg │ ├── index.js │ ├── instagram.svg │ ├── linkedin.svg │ ├── logo.svg │ ├── menu.svg │ ├── people01.png │ ├── people02.png │ ├── people03.png │ ├── quotes.svg │ ├── robot.png │ └── twitter.svg ├── components │ ├── Billing.jsx │ ├── Business.jsx │ ├── Button.jsx │ ├── CTA.jsx │ ├── CardDeal.jsx │ ├── Clients.jsx │ ├── FeedbackCard.jsx │ ├── Footer.jsx │ ├── GetStarted.jsx │ ├── Hero.jsx │ ├── Navbar.jsx │ ├── Stats.jsx │ ├── Testimonials.jsx │ └── index.js ├── constants │ └── index.js ├── index.css ├── main.jsx └── style.js ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/Discount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/Discount.svg -------------------------------------------------------------------------------- /src/assets/Send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/Send.svg -------------------------------------------------------------------------------- /src/assets/Shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/Shield.svg -------------------------------------------------------------------------------- /src/assets/Star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/Star.svg -------------------------------------------------------------------------------- /src/assets/airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/airbnb.png -------------------------------------------------------------------------------- /src/assets/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/apple.svg -------------------------------------------------------------------------------- /src/assets/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/arrow-up.svg -------------------------------------------------------------------------------- /src/assets/bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/bill.png -------------------------------------------------------------------------------- /src/assets/binance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/binance.png -------------------------------------------------------------------------------- /src/assets/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/card.png -------------------------------------------------------------------------------- /src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/close.svg -------------------------------------------------------------------------------- /src/assets/coinbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/coinbase.png -------------------------------------------------------------------------------- /src/assets/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/dropbox.png -------------------------------------------------------------------------------- /src/assets/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/facebook.svg -------------------------------------------------------------------------------- /src/assets/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/google.svg -------------------------------------------------------------------------------- /src/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/index.js -------------------------------------------------------------------------------- /src/assets/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/instagram.svg -------------------------------------------------------------------------------- /src/assets/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/linkedin.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/menu.svg -------------------------------------------------------------------------------- /src/assets/people01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/people01.png -------------------------------------------------------------------------------- /src/assets/people02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/people02.png -------------------------------------------------------------------------------- /src/assets/people03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/people03.png -------------------------------------------------------------------------------- /src/assets/quotes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/quotes.svg -------------------------------------------------------------------------------- /src/assets/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/robot.png -------------------------------------------------------------------------------- /src/assets/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/assets/twitter.svg -------------------------------------------------------------------------------- /src/components/Billing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/Billing.jsx -------------------------------------------------------------------------------- /src/components/Business.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/Business.jsx -------------------------------------------------------------------------------- /src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/Button.jsx -------------------------------------------------------------------------------- /src/components/CTA.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/CTA.jsx -------------------------------------------------------------------------------- /src/components/CardDeal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/CardDeal.jsx -------------------------------------------------------------------------------- /src/components/Clients.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/Clients.jsx -------------------------------------------------------------------------------- /src/components/FeedbackCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/FeedbackCard.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/GetStarted.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/GetStarted.jsx -------------------------------------------------------------------------------- /src/components/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/Hero.jsx -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Stats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/Stats.jsx -------------------------------------------------------------------------------- /src/components/Testimonials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/Testimonials.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/src/style.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saba-ramezani/Bank-App/HEAD/vite.config.js --------------------------------------------------------------------------------