├── .eslintcache ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── assets └── images │ ├── advanced-option.jpg │ ├── bg-hero.jpg │ ├── bg-works.jpg │ ├── clean-design.jpg │ ├── easy-customise.jpg │ ├── great-support.jpg │ ├── modern-design.jpg │ └── unlimited-features.jpg ├── components ├── common │ ├── footer.js │ └── header.js ├── home │ └── hero.js └── views │ ├── about.js │ ├── contact.js │ ├── faq.js │ ├── feature.js │ ├── home.js │ ├── pricing.js │ └── works.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /.eslintcache: -------------------------------------------------------------------------------- 1 | [{"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\index.js":"1","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\reportWebVitals.js":"2","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\App.js":"3","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\common\\header.js":"4","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\home\\hero.js":"5","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\home.js":"6","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\about.js":"7","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\feature.js":"8","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\works.js":"9","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\faq.js":"10","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\pricing.js":"11","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\contact.js":"12","C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\common\\footer.js":"13"},{"size":500,"mtime":499162500000,"results":"14","hashOfConfig":"15"},{"size":362,"mtime":499162500000,"results":"16","hashOfConfig":"15"},{"size":654,"mtime":1611845400121,"results":"17","hashOfConfig":"15"},{"size":829,"mtime":1612203198136,"results":"18","hashOfConfig":"15"},{"size":2069,"mtime":1612202543614,"results":"19","hashOfConfig":"15"},{"size":512,"mtime":1611839647018,"results":"20","hashOfConfig":"15"},{"size":2534,"mtime":1612202597743,"results":"21","hashOfConfig":"15"},{"size":3282,"mtime":1611811251553,"results":"22","hashOfConfig":"15"},{"size":1522,"mtime":1612202524929,"results":"23","hashOfConfig":"15"},{"size":4164,"mtime":1611827278604,"results":"24","hashOfConfig":"15"},{"size":2749,"mtime":1611833468706,"results":"25","hashOfConfig":"15"},{"size":3182,"mtime":1611841612810,"results":"26","hashOfConfig":"15"},{"size":1407,"mtime":1611933947949,"results":"27","hashOfConfig":"15"},{"filePath":"28","messages":"29","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},"1wc7znn",{"filePath":"31","messages":"32","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},{"filePath":"33","messages":"34","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},{"filePath":"35","messages":"36","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"37","messages":"38","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"39","messages":"40","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},{"filePath":"41","messages":"42","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},{"filePath":"43","messages":"44","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},{"filePath":"45","messages":"46","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"47","messages":"48","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},{"filePath":"49","messages":"50","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},{"filePath":"51","messages":"52","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},{"filePath":"53","messages":"54","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"30"},"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\index.js",[],["55","56"],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\reportWebVitals.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\App.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\common\\header.js",["57"],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\home\\hero.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\home.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\about.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\feature.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\works.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\faq.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\pricing.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\views\\contact.js",[],"C:\\Users\\Uesr\\Desktop\\Tech - React AntDesign\\tech-react-antdesgin\\src\\components\\common\\footer.js",[],{"ruleId":"58","replacedBy":"59"},{"ruleId":"60","replacedBy":"61"},{"ruleId":"62","severity":1,"message":"63","line":1,"column":10,"nodeType":"64","messageId":"65","endLine":1,"endColumn":14},"no-native-reassign",["66"],"no-negated-in-lhs",["67"],"no-unused-vars","'Menu' is defined but never used.","Identifier","unusedVar","no-global-assign","no-unsafe-negation"] -------------------------------------------------------------------------------- /.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 the browser. 13 | 14 | The page will reload if you make edits.\ 15 | You will 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tech-react-antdesgin", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.11.9", 7 | "@testing-library/react": "^11.2.3", 8 | "@testing-library/user-event": "^12.6.2", 9 | "antd": "^4.11.2", 10 | "react": "^17.0.1", 11 | "react-dom": "^17.0.1", 12 | "react-scripts": "4.0.1", 13 | "web-vitals": "^0.2.4" 14 | }, 15 | "scripts": { 16 | "start": "react-scripts start", 17 | "build": "react-scripts build", 18 | "test": "react-scripts test", 19 | "eject": "react-scripts eject" 20 | }, 21 | "eslintConfig": { 22 | "extends": [ 23 | "react-app", 24 | "react-app/jest" 25 | ] 26 | }, 27 | "browserslist": { 28 | "production": [ 29 | ">0.2%", 30 | "not dead", 31 | "not op_mini all" 32 | ], 33 | "development": [ 34 | "last 1 chrome version", 35 | "last 1 firefox version", 36 | "last 1 safari version" 37 | ] 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | 28 | 29 | 30 | 31 | Tech | React Ant Design 32 | 33 | 34 | 35 |
36 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/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.css: -------------------------------------------------------------------------------- 1 | /* 2 | general 3 | ------- 4 | */ 5 | body { 6 | font-size: 16px; 7 | line-height: 1.6; 8 | color: #333; 9 | overflow-x: hidden; 10 | } 11 | 12 | .container-fluid { 13 | margin: 0 auto; 14 | max-width: 1200px; 15 | padding: 0 15px; 16 | } 17 | 18 | .ant-layout { 19 | background: #fff !important; 20 | } 21 | 22 | .mainLayout .ant-layout-header { 23 | background: #f8f8f8; 24 | padding: 0; 25 | height: auto; 26 | line-height: 1.6; 27 | } 28 | 29 | p { 30 | font-size: 16px; 31 | line-height: 1.6; 32 | } 33 | 34 | .bgGray { 35 | background: #fafafa; 36 | } 37 | 38 | /* 39 | title holder 40 | ------------ 41 | */ 42 | .titleHolder { 43 | text-align: center; 44 | position: relative; 45 | padding: 0 0 20px; 46 | margin: 0 0 40px; 47 | } 48 | 49 | .titleHolder:after { 50 | transform: translateX(-50%); 51 | content: ''; 52 | background: #1890ff; 53 | position: absolute; 54 | bottom: 0; 55 | left: 50%; 56 | height: 3px; 57 | width: 50px; 58 | } 59 | 60 | .titleHolder h2 { 61 | font-size: 28px; 62 | margin: 0; 63 | } 64 | 65 | /* 66 | header 67 | ------ 68 | */ 69 | .ant-layout-header { 70 | position: fixed; 71 | left: 0; 72 | right: 0; 73 | z-index: 999; 74 | } 75 | 76 | .header { 77 | display: flex; 78 | justify-content: space-between; 79 | align-items: center; 80 | padding: 15px 0; 81 | } 82 | 83 | .header .logo { 84 | font-size: 22px; 85 | text-transform: uppercase; 86 | font-weight: 400; 87 | } 88 | 89 | .header .logo .fas { 90 | color: #1890ff; 91 | margin: 0 5px 0 0; 92 | font-size: 28px; 93 | } 94 | 95 | .header .logo a { 96 | color: #333; 97 | } 98 | 99 | .header .ant-anchor-wrapper { 100 | background: none; 101 | } 102 | 103 | .header .ant-anchor { 104 | display: flex; 105 | } 106 | 107 | .header .ant-anchor-ink { 108 | display: none; 109 | } 110 | 111 | .header .ant-anchor-link { 112 | padding: 0 20px; 113 | line-height: 1.4; 114 | position: relative; 115 | } 116 | 117 | .header .ant-anchor-link:before, 118 | .header .ant-anchor-link:after { 119 | content: ''; 120 | background: #1890ff; 121 | width: 1px; 122 | position: absolute; 123 | top: 2px; 124 | bottom: 2px; 125 | left: 30%; 126 | opacity: 0; 127 | transition: all 0.3s linear; 128 | } 129 | 130 | .header .ant-anchor-link:after { 131 | left: auto; 132 | right: 30%; 133 | } 134 | 135 | .header .ant-anchor-link.ant-anchor-link-active:before, 136 | .header .ant-anchor-link:hover:before { 137 | left: 5%; 138 | opacity: 1; 139 | } 140 | 141 | .header .ant-anchor-link.ant-anchor-link-active:after, 142 | .header .ant-anchor-link:hover:after { 143 | right: 5%; 144 | opacity: 1; 145 | } 146 | 147 | /* ant menu */ 148 | .header .ant-menu { 149 | border: 0; 150 | background: none !important; 151 | } 152 | 153 | .header .ant-menu li.ant-menu-item { 154 | position: relative; 155 | color: #333; 156 | } 157 | 158 | .header .ant-menu li.ant-menu-item:before, 159 | .header .ant-menu li.ant-menu-item:after { 160 | content: ''; 161 | background: #1890ff; 162 | width: 1px; 163 | position: absolute; 164 | top: 2px; 165 | bottom: 2px; 166 | left: 30%; 167 | opacity: 0; 168 | transition: all 0.3s linear; 169 | } 170 | 171 | .header .ant-menu li.ant-menu-item:after { 172 | left: auto; 173 | right: 30%; 174 | } 175 | 176 | .header .ant-menu li.ant-menu-item, 177 | .header .ant-menu li.ant-menu-item-selected { 178 | border: 0 !important; 179 | } 180 | 181 | .header .ant-menu li.ant-menu-item-selected, 182 | .header .ant-menu li.ant-menu-item:hover { 183 | color: #1890ff; 184 | background: none; 185 | } 186 | 187 | .header .ant-menu li.ant-menu-item-selected:before, 188 | .header .ant-menu li.ant-menu-item:hover:before { 189 | left: 5%; 190 | opacity: 1; 191 | } 192 | 193 | .header .ant-menu li.ant-menu-item-selected:after, 194 | .header .ant-menu li.ant-menu-item:hover:after { 195 | right: 5%; 196 | opacity: 1; 197 | } 198 | 199 | /* 200 | hero 201 | ---- 202 | */ 203 | .heroBlock { 204 | background: url('assets/images/bg-hero.jpg') no-repeat; 205 | background-position: 50% 100%; 206 | background-size: cover; 207 | height: 100vh; 208 | } 209 | 210 | .heroBlock .container-fluid { 211 | display: block !important; 212 | } 213 | 214 | .heroBlock .ant-carousel, 215 | .heroBlock .ant-carousel div { 216 | height: 100%; 217 | } 218 | 219 | .heroBlock .slick-dots li button { 220 | background: #000 !important; 221 | } 222 | 223 | .heroBlock .slick-dots li.slick-active button { 224 | background: #1890ff !important; 225 | } 226 | 227 | .heroBlock .content { 228 | max-width: 640px; 229 | display: flex; 230 | flex-direction: column; 231 | justify-content: center; 232 | padding: 0 0 70px; 233 | } 234 | 235 | .heroBlock h3 { 236 | font-size: 30px; 237 | line-height: 1.2; 238 | margin: 0 0 30px; 239 | } 240 | 241 | .heroBlock p { 242 | margin: 0 0 30px; 243 | } 244 | 245 | .heroBlock .btnHolder { 246 | height: auto !important; 247 | } 248 | 249 | .heroBlock .btnHolder button, 250 | .heroBlock .btnHolder .fas { 251 | margin: 0 10px 0 0; 252 | } 253 | 254 | /* 255 | block 256 | ----- 257 | */ 258 | .block { 259 | padding: 60px 0; 260 | border-bottom: 1px solid #d9d9d9; 261 | } 262 | 263 | /* 264 | about 265 | ----- 266 | */ 267 | .aboutBlock .contentHolder { 268 | text-align: center; 269 | margin: 0 0 50px; 270 | } 271 | 272 | .aboutBlock .icon { 273 | font-size: 40px; 274 | color: #1890ff; 275 | margin: 0 0 10px; 276 | } 277 | 278 | .aboutBlock .content { 279 | text-align: center; 280 | } 281 | 282 | /* 283 | how it works 284 | ------------ 285 | */ 286 | .worksBlock { 287 | background: url('assets/images/bg-works.jpg') no-repeat; 288 | background-position: 50% 0; 289 | background-size: cover; 290 | background-attachment: fixed; 291 | color: #fff; 292 | position: relative; 293 | } 294 | 295 | .worksBlock:before { 296 | content: ''; 297 | background: rgba(0, 0, 0, 0.5); 298 | position: absolute; 299 | top: 0; 300 | bottom: 0; 301 | left: 0; 302 | right: 0; 303 | } 304 | 305 | .worksBlock h2 { 306 | color: #fff; 307 | } 308 | 309 | .worksBlock .contentHolder { 310 | text-align: center; 311 | } 312 | 313 | .worksBlock .contentHolder button { 314 | font-size: 40px; 315 | line-height: 1; 316 | background: none; 317 | border: 1px solid #fff; 318 | color: #fff; 319 | padding: 30px; 320 | border-radius: 50%; 321 | width: 110px; 322 | height: 110px; 323 | } 324 | 325 | /* 326 | faqs 327 | ---- 328 | */ 329 | .faqBlock .ant-collapse { 330 | margin: 0 0 40px; 331 | } 332 | 333 | .faqBlock .quickSupport { 334 | text-align: center; 335 | max-width: 740px; 336 | margin: auto; 337 | } 338 | 339 | .faqBlock .fas { 340 | margin: 0 10px 0 0; 341 | } 342 | 343 | /* 344 | pricing block 345 | ------------- 346 | */ 347 | .pricingBlock .ant-list { 348 | text-align: center; 349 | } 350 | 351 | .pricingBlock .ant-row > div:nth-child(2) .ant-list-item { 352 | box-shadow: 0 0 12px 2px #f3f3f3; 353 | transform: scale(1.1); 354 | position: relative; 355 | z-index: 1; 356 | } 357 | 358 | .pricingBlock .ant-card-head-title { 359 | text-transform: uppercase; 360 | font-size: 20px; 361 | font-weight: 400; 362 | } 363 | 364 | .pricingBlock .large { 365 | font-size: 38px; 366 | line-height: 1; 367 | margin: 0 0 20px; 368 | } 369 | 370 | .pricingBlock .fab { 371 | margin: 0 10px 0 0; 372 | } 373 | 374 | /* 375 | contact 376 | ------- 377 | */ 378 | .contactBlock .ant-form { 379 | max-width: 640px; 380 | margin: auto; 381 | } 382 | 383 | .contactBlock .ant-form textarea { 384 | min-height: 120px; 385 | height: 120px; 386 | } 387 | 388 | /* 389 | footer 390 | ------ 391 | */ 392 | .ant-layout-footer { 393 | background: #111 !important; 394 | color: #fff !important; 395 | padding: 60px 0 !important; 396 | text-align: center; 397 | } 398 | 399 | .footer .logo { 400 | font-size: 22px; 401 | text-transform: uppercase; 402 | margin: 0 0 20px; 403 | } 404 | 405 | .footer .fas { 406 | color: #1890ff; 407 | font-size: 28px; 408 | margin: 0 5px 0 0; 409 | } 410 | 411 | .footer .logo a { 412 | color: #fff; 413 | } 414 | 415 | .footer .socials { 416 | list-style: none; 417 | display: flex; 418 | align-items: center; 419 | justify-content: center; 420 | padding: 0; 421 | font-size: 24px; 422 | } 423 | 424 | .footer .socials li { 425 | margin: 0 20px; 426 | } 427 | 428 | .footer .socials a { 429 | color: #fff; 430 | } 431 | 432 | .footer .socials a:hover { 433 | color: #1890ff; 434 | } 435 | 436 | .footer .goTop:hover { 437 | opacity: 0.7; 438 | } 439 | 440 | .mobileVisible { 441 | display: none; 442 | } 443 | 444 | .mobileHidden { 445 | display: block; 446 | } 447 | 448 | /* 449 | responsive 450 | ---------- 451 | */ 452 | @media only screen and (max-width: 991px) { 453 | .pricingBlock .ant-row > div:nth-child(2) .ant-list-item { 454 | transform: scale(1.14); 455 | } 456 | } 457 | 458 | @media only screen and (max-width: 767px) { 459 | .pricingBlock .ant-row > div:nth-child(2) .ant-list-item { 460 | transform: scale(1); 461 | } 462 | 463 | .mobileVisible { 464 | display: block; 465 | } 466 | 467 | .mobileHidden { 468 | display: none; 469 | } 470 | } 471 | 472 | .ant-menu-item-only-child { 473 | padding-left: 10px !important; 474 | padding-right: 10px !important; 475 | 476 | } -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import './App.css' 3 | import 'antd/dist/antd.css' 4 | import { Layout } from 'antd' 5 | import AppHeader from './components/common/header' 6 | import { Content, Footer } from 'antd/lib/layout/layout' 7 | import AppHome from './components/views/home' 8 | import Footer1 from './components/common/footer' 9 | 10 | const { Header } = Layout 11 | 12 | function App() { 13 | return ( 14 |
15 | 16 |
17 | 18 |
19 | 20 | 21 | 22 | 25 |
26 |
27 | ) 28 | } 29 | 30 | export default App 31 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /src/assets/images/advanced-option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/src/assets/images/advanced-option.jpg -------------------------------------------------------------------------------- /src/assets/images/bg-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/src/assets/images/bg-hero.jpg -------------------------------------------------------------------------------- /src/assets/images/bg-works.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/src/assets/images/bg-works.jpg -------------------------------------------------------------------------------- /src/assets/images/clean-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/src/assets/images/clean-design.jpg -------------------------------------------------------------------------------- /src/assets/images/easy-customise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/src/assets/images/easy-customise.jpg -------------------------------------------------------------------------------- /src/assets/images/great-support.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/src/assets/images/great-support.jpg -------------------------------------------------------------------------------- /src/assets/images/modern-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/src/assets/images/modern-design.jpg -------------------------------------------------------------------------------- /src/assets/images/unlimited-features.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkhrorSoliev/Tech-React-AntDesign-Website/87ecc050266e2a04c5ea29c036cc924b88c00702/src/assets/images/unlimited-features.jpg -------------------------------------------------------------------------------- /src/components/common/footer.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | import { BackTop } from 'antd' 4 | 5 | function AppFooter() { 6 | return ( 7 |
8 |
9 |
10 | 11 | Tech 12 |
13 | 40 |
Copyright © 2020 Tech
41 | 42 |
43 | 44 |
45 |
46 |
47 |
48 | ) 49 | } 50 | 51 | export default AppFooter; 52 | -------------------------------------------------------------------------------- /src/components/common/header.js: -------------------------------------------------------------------------------- 1 | import { Menu } from 'antd' 2 | import React from 'react' 3 | import { Anchor } from 'antd' 4 | 5 | const { Link } = Anchor 6 | function AppHeader() { 7 | return ( 8 |
9 |
10 |
11 | 12 | Tech 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 |
25 | ) 26 | } 27 | 28 | export default AppHeader 29 | -------------------------------------------------------------------------------- /src/components/home/hero.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Button, Carousel } from 'antd' 3 | 4 | const items = [ 5 | { 6 | key: '1', 7 | title: 'Web and mobile payment built for developers', 8 | content: 9 | 'An vim odio ocurreret consetetur, justo constituto ex mea. Quidam facilisis vituperata pri ne. Id nostrud gubergren urbanitas sed, quo summo animal qualisque ut, cu nostro dissentias consectetuer mel. Ut admodum conceptam mei, cu eam tation fabulas abhorreant. His ex mandamus.', 10 | }, 11 | { 12 | key: '2', 13 | title: 'Work better together. Schedule meetings', 14 | content: 15 | 'An vim odio ocurreret consetetur, justo constituto ex mea. Quidam facilisis vituperata pri ne. Id nostrud gubergren urbanitas sed, quo summo animal qualisque ut, cu nostro dissentias consectetuer mel. Ut admodum conceptam mei, cu eam tation fabulas abhorreant. His ex mandamus.', 16 | }, 17 | { 18 | key: '3', 19 | title: 'The best app to increase your productivity', 20 | content: 21 | 'An vim odio ocurreret consetetur, justo constituto ex mea. Quidam facilisis vituperata pri ne. Id nostrud gubergren urbanitas sed, quo summo animal qualisque ut, cu nostro dissentias consectetuer mel. Ut admodum conceptam mei, cu eam tation fabulas abhorreant. His ex mandamus.', 22 | }, 23 | ] 24 | 25 | function AppHero() { 26 | return ( 27 |
28 | 29 | {items.map((item) => { 30 | return ( 31 |
32 |
33 |

{item.title}

34 |

{item.content}

35 |
36 | 39 | 43 |
44 |
45 |
46 | ) 47 | })} 48 |
49 | , 50 |
51 | ) 52 | } 53 | 54 | export default AppHero 55 | -------------------------------------------------------------------------------- /src/components/views/about.js: -------------------------------------------------------------------------------- 1 | import { Col, Row } from 'antd' 2 | import React from 'react' 3 | 4 | const items = [ 5 | { 6 | key: '1', 7 | icon: , 8 | title: 'High Performance', 9 | content: 10 | 'cu nostro dissentias consectetuer mel. Ut admodum conceptam mei, cu eam tation fabulas abhorreant. His ex mandamus.', 11 | }, 12 | { 13 | key: '2', 14 | icon: , 15 | title: 'Flat Design', 16 | content: 17 | 'cu nostro dissentias consectetuer mel. Ut admodum conceptam mei, cu eam tation fabulas abhorreant. His ex mandamus.', 18 | }, 19 | { 20 | key: '3', 21 | icon: , 22 | title: 'Simplified Workflow', 23 | content: 24 | 'cu nostro dissentias consectetuer mel. Ut admodum conceptam mei, cu eam tation fabulas abhorreant. His ex mandamus.', 25 | }, 26 | ] 27 | 28 | function About() { 29 | return ( 30 |
31 |
32 |
33 |

About Us

34 |

Lorem ipsum dolor sit amet.

35 |
36 |
37 |

38 | Lorem ipsum dolor sit, amet consectetur adipisicing elit. Facilis 39 | odio accusamus officiis animi dolorum id ipsam perferendis ea 40 | voluptatum dignissimos. Totam itaque voluptatum sed obcaecati 41 | excepturi similique quasi eos, ullam incidunt minima ut cum odio 42 | aperiam dolorum quia doloribus nam, maiores sapiente libero! 43 | Consequatur impedit rem sint vel neque inventore, sit culpa fuga 44 | ducimus corporis asperiores alias, id repellat possimus aliquid 45 | adipisci esse? Earum obcaecati, repudiandae repellendus ipsum dicta 46 | mollitia, ab nobis dolore commodi eaque assumenda rerum 47 | exercitationem veniam, molestiae repellat blanditiis odit officiis 48 | saepe sint nisi iste similique labore minima. Laborum harum quaerat, 49 | pariatur fuga animi corrupti dolor soluta. 50 |

51 |
52 | 53 | {items.map((item) => { 54 | return ( 55 | 56 |
57 |
{item.icon}
58 |

{item.title}

59 |

{item.content}

60 |
61 | 62 | ) 63 | })} 64 |
65 |
66 |
67 | ) 68 | } 69 | 70 | export default About 71 | -------------------------------------------------------------------------------- /src/components/views/contact.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | import { Form, Input, Button, Checkbox } from 'antd'; 4 | const { TextArea } = Input; 5 | 6 | function AppContact() { 7 | return ( 8 |
9 |
10 |
11 |

Get in Touch

12 |

Dolore nam rerum obcaecati fugit odio nobis Molestiae rerum

13 |
14 |
19 | 28 | 29 | 30 | 43 | 44 | 45 | 48 | 49 | 50 | 53 | 54 | 55 | 58 |