├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── assets ├── 1.png ├── 2.webp ├── 3.jpg ├── 4.jpg ├── 5.jpg └── 5.png ├── components ├── Contact.jsx ├── Footer.jsx ├── Header.jsx ├── Home.jsx └── Services.jsx ├── index.js └── styles ├── App.scss ├── colors.scss ├── contact.scss ├── footer.scss ├── header.scss ├── home.scss └── mediaquery.scss /.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 | # Techist 2 | Landing page based on react. 3 | ***Visit website***** 4 | https://techistreactpage.netlify.app/ 5 | ## Technologies used 6 | * React 7 | * React routers 8 | * SaaS 9 | ### Packages 10 | * React Icons 11 | * Responsive Responsive Carousel 12 | * React Router Hash Link 13 | 14 | 15 | ![Screenshot (148)](https://user-images.githubusercontent.com/84200302/223737065-32aea367-e539-4714-8c35-ff8047fe8919.png) 16 | ![Screenshot (150)](https://user-images.githubusercontent.com/84200302/223737470-142a554e-77fd-4bb1-b20c-38c8db571cff.png) 17 | ![Screenshot (149)](https://user-images.githubusercontent.com/84200302/223739163-965adfb2-c71b-415b-9d9a-0b78567f4ab6.png) 18 | 19 | 20 | ![mobile](https://user-images.githubusercontent.com/84200302/223740440-e3d3ea8a-c8f0-4564-b4d3-14fb5404ef30.png) 21 | ![mobile (1)](https://user-images.githubusercontent.com/84200302/223740503-76e98c4a-12fa-4fef-b0e9-cdc33d1b656b.png) 22 | ![mobile (2)](https://user-images.githubusercontent.com/84200302/223740537-3ed05c74-013d-4f8a-9ead-27cc95a1a8b7.png) 23 | 24 | ![mobile (4)](https://user-images.githubusercontent.com/84200302/224040736-a1c24c5d-f65b-43d7-a7a2-ce5cfe914404.png) 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-project", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.16.5", 7 | "@testing-library/react": "^13.4.0", 8 | "@testing-library/user-event": "^13.5.0", 9 | "react": "^18.2.0", 10 | "react-dom": "^18.2.0", 11 | "react-icons": "^4.7.1", 12 | "react-responsive-carousel": "^3.2.23", 13 | "react-router-dom": "^6.8.1", 14 | "react-router-hash-link": "^2.4.3", 15 | "react-scripts": "5.0.1", 16 | "sass": "^1.58.3", 17 | "web-vitals": "^2.1.4" 18 | }, 19 | "scripts": { 20 | "start": "react-scripts start", 21 | "build": "react-scripts build", 22 | "test": "react-scripts test", 23 | "eject": "react-scripts eject" 24 | }, 25 | "eslintConfig": { 26 | "extends": [ 27 | "react-app", 28 | "react-app/jest" 29 | ] 30 | }, 31 | "browserslist": { 32 | "production": [ 33 | ">0.2%", 34 | "not dead", 35 | "not op_mini all" 36 | ], 37 | "development": [ 38 | "last 1 chrome version", 39 | "last 1 firefox version", 40 | "last 1 safari version" 41 | ] 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anoshkhan/Landing-page/a8017ba64b9e0698302e927e00f204cdf99ae674/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/Anoshkhan/Landing-page/a8017ba64b9e0698302e927e00f204cdf99ae674/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anoshkhan/Landing-page/a8017ba64b9e0698302e927e00f204cdf99ae674/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 { BrowserRouter as Router,Routes, Route } from "react-router-dom"; 2 | import Header from "./components/Header"; 3 | import Home from "./components/Home"; 4 | import Footer from "./components/Footer"; 5 | import Contact from "./components/Contact"; 6 | import Services from "./components/Services"; 7 | 8 | import "./styles/App.scss"; 9 | import "./styles/header.scss"; 10 | import "./styles/home.scss"; 11 | import "./styles/footer.scss"; 12 | import "./styles/contact.scss"; 13 | import "./styles/mediaquery.scss"; 14 | 15 | function App() { 16 | return ( 17 | 18 |
19 | 20 | }/> 21 | }/> 22 | }/> 23 | 24 |