From c54209f9800e8eb169a39059613798f70910db85 Mon Sep 17 00:00:00 2001 From: Yuval Hazaz Date: Wed, 31 Jan 2024 07:54:51 +0200 Subject: [PATCH] Industries (#448) * create pageHero and styled buttons * create retail page * hero responsive style * add lottie animation for industry pages --- components/Common/Button/button-outline.jsx | 14 + components/Common/Button/button-primary.jsx | 14 + components/Common/PageHero/index.jsx | 91 + .../Sections/Industries/healthcare-hero.jsx | 36 + .../Industries/manufacturing-hero.jsx | 38 + .../Sections/Industries/retail-hero.jsx | 38 + lottie/healthcare.js | 2482 ++ lottie/manufacturing.js | 1861 ++ lottie/retail.json | 20863 ++++++++++++++++ package-lock.json | 31 + package.json | 1 + pages/industries/healthcare.js | 57 + pages/industries/manufacturing.js | 57 + pages/industries/retail.js | 57 + public/animation/healthcare/img_0.png | Bin 0 -> 1858 bytes public/animation/healthcare/img_1.png | Bin 0 -> 1474 bytes public/animation/healthcare/img_2.png | Bin 0 -> 132285 bytes public/animation/manufacturing/img_0.png | Bin 0 -> 17876 bytes public/animation/manufacturing/img_1.png | Bin 0 -> 51013 bytes public/animation/manufacturing/img_10.png | Bin 0 -> 2480 bytes public/animation/manufacturing/img_11.png | Bin 0 -> 2480 bytes public/animation/manufacturing/img_12.png | Bin 0 -> 2480 bytes public/animation/manufacturing/img_13.png | Bin 0 -> 32791 bytes public/animation/manufacturing/img_14.png | Bin 0 -> 2480 bytes public/animation/manufacturing/img_15.png | Bin 0 -> 2480 bytes public/animation/manufacturing/img_16.png | Bin 0 -> 3329 bytes public/animation/manufacturing/img_17.png | Bin 0 -> 2480 bytes public/animation/manufacturing/img_18.png | Bin 0 -> 2480 bytes public/animation/manufacturing/img_19.png | Bin 0 -> 2765 bytes public/animation/manufacturing/img_2.png | Bin 0 -> 4855 bytes public/animation/manufacturing/img_20.png | Bin 0 -> 387975 bytes public/animation/manufacturing/img_3.png | Bin 0 -> 4915 bytes public/animation/manufacturing/img_4.png | Bin 0 -> 4936 bytes public/animation/manufacturing/img_5.png | Bin 0 -> 5036 bytes public/animation/manufacturing/img_6.png | Bin 0 -> 4957 bytes public/animation/manufacturing/img_7.png | Bin 0 -> 2750 bytes public/animation/manufacturing/img_8.png | Bin 0 -> 2480 bytes public/animation/manufacturing/img_9.png | Bin 0 -> 2480 bytes tailwind.config.js | 8 + 39 files changed, 25648 insertions(+) create mode 100644 components/Common/Button/button-outline.jsx create mode 100644 components/Common/Button/button-primary.jsx create mode 100644 components/Common/PageHero/index.jsx create mode 100644 components/Sections/Industries/healthcare-hero.jsx create mode 100644 components/Sections/Industries/manufacturing-hero.jsx create mode 100644 components/Sections/Industries/retail-hero.jsx create mode 100644 lottie/healthcare.js create mode 100644 lottie/manufacturing.js create mode 100644 lottie/retail.json create mode 100644 pages/industries/healthcare.js create mode 100644 pages/industries/manufacturing.js create mode 100644 pages/industries/retail.js create mode 100644 public/animation/healthcare/img_0.png create mode 100644 public/animation/healthcare/img_1.png create mode 100644 public/animation/healthcare/img_2.png create mode 100644 public/animation/manufacturing/img_0.png create mode 100644 public/animation/manufacturing/img_1.png create mode 100644 public/animation/manufacturing/img_10.png create mode 100644 public/animation/manufacturing/img_11.png create mode 100644 public/animation/manufacturing/img_12.png create mode 100644 public/animation/manufacturing/img_13.png create mode 100644 public/animation/manufacturing/img_14.png create mode 100644 public/animation/manufacturing/img_15.png create mode 100644 public/animation/manufacturing/img_16.png create mode 100644 public/animation/manufacturing/img_17.png create mode 100644 public/animation/manufacturing/img_18.png create mode 100644 public/animation/manufacturing/img_19.png create mode 100644 public/animation/manufacturing/img_2.png create mode 100644 public/animation/manufacturing/img_20.png create mode 100644 public/animation/manufacturing/img_3.png create mode 100644 public/animation/manufacturing/img_4.png create mode 100644 public/animation/manufacturing/img_5.png create mode 100644 public/animation/manufacturing/img_6.png create mode 100644 public/animation/manufacturing/img_7.png create mode 100644 public/animation/manufacturing/img_8.png create mode 100644 public/animation/manufacturing/img_9.png diff --git a/components/Common/Button/button-outline.jsx b/components/Common/Button/button-outline.jsx new file mode 100644 index 00000000..14852e5f --- /dev/null +++ b/components/Common/Button/button-outline.jsx @@ -0,0 +1,14 @@ +import Button from '../Button'; + +const OutlineButton = ({ className, ...props }) => { + return ( +