├── .gitignore ├── CHANGELOG.md ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public ├── _redirects └── videos │ └── video.mp4 ├── src ├── App.jsx ├── css │ ├── additional-styles │ │ ├── range-slider.css │ │ ├── theme.css │ │ ├── toggle-switch.css │ │ └── utility-patterns.css │ ├── style.css │ └── tailwind.config.js ├── favicon.svg ├── images │ ├── favicon.png │ ├── features-03-image-01.png │ ├── features-03-image-02.png │ ├── features-03-image-03.png │ ├── hero-image-01.png │ ├── hero-image-01.png:Zone.Identifier │ ├── testimonial-01.jpg │ ├── testimonial-02.jpg │ └── testimonial-03.jpg ├── index.css ├── main.jsx ├── pages │ ├── Home.jsx │ ├── ResetPassword.jsx │ ├── SignIn.jsx │ └── SignUp.jsx ├── partials │ ├── Banner.jsx │ ├── FeaturesBlocks.jsx │ ├── FeaturesZigzag.jsx │ ├── Footer.jsx │ ├── Header.jsx │ ├── HeroHome.jsx │ ├── Newsletter.jsx │ ├── PageIllustration.jsx │ └── Testimonials.jsx └── utils │ ├── Dropdown.jsx │ ├── Modal.jsx │ └── Transition.jsx ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/videos/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/public/videos/video.mp4 -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/css/additional-styles/range-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/css/additional-styles/range-slider.css -------------------------------------------------------------------------------- /src/css/additional-styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/css/additional-styles/theme.css -------------------------------------------------------------------------------- /src/css/additional-styles/toggle-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/css/additional-styles/toggle-switch.css -------------------------------------------------------------------------------- /src/css/additional-styles/utility-patterns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/css/additional-styles/utility-patterns.css -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/css/style.css -------------------------------------------------------------------------------- /src/css/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/css/tailwind.config.js -------------------------------------------------------------------------------- /src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/favicon.svg -------------------------------------------------------------------------------- /src/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/images/favicon.png -------------------------------------------------------------------------------- /src/images/features-03-image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/images/features-03-image-01.png -------------------------------------------------------------------------------- /src/images/features-03-image-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/images/features-03-image-02.png -------------------------------------------------------------------------------- /src/images/features-03-image-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/images/features-03-image-03.png -------------------------------------------------------------------------------- /src/images/hero-image-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/images/hero-image-01.png -------------------------------------------------------------------------------- /src/images/hero-image-01.png:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/images/hero-image-01.png:Zone.Identifier -------------------------------------------------------------------------------- /src/images/testimonial-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/images/testimonial-01.jpg -------------------------------------------------------------------------------- /src/images/testimonial-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/images/testimonial-02.jpg -------------------------------------------------------------------------------- /src/images/testimonial-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/images/testimonial-03.jpg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/pages/ResetPassword.jsx -------------------------------------------------------------------------------- /src/pages/SignIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/pages/SignIn.jsx -------------------------------------------------------------------------------- /src/pages/SignUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/pages/SignUp.jsx -------------------------------------------------------------------------------- /src/partials/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/partials/Banner.jsx -------------------------------------------------------------------------------- /src/partials/FeaturesBlocks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/partials/FeaturesBlocks.jsx -------------------------------------------------------------------------------- /src/partials/FeaturesZigzag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/partials/FeaturesZigzag.jsx -------------------------------------------------------------------------------- /src/partials/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/partials/Footer.jsx -------------------------------------------------------------------------------- /src/partials/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/partials/Header.jsx -------------------------------------------------------------------------------- /src/partials/HeroHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/partials/HeroHome.jsx -------------------------------------------------------------------------------- /src/partials/Newsletter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/partials/Newsletter.jsx -------------------------------------------------------------------------------- /src/partials/PageIllustration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/partials/PageIllustration.jsx -------------------------------------------------------------------------------- /src/partials/Testimonials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/partials/Testimonials.jsx -------------------------------------------------------------------------------- /src/utils/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/utils/Dropdown.jsx -------------------------------------------------------------------------------- /src/utils/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/utils/Modal.jsx -------------------------------------------------------------------------------- /src/utils/Transition.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/src/utils/Transition.jsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/closeresty/landingpage/HEAD/vite.config.js --------------------------------------------------------------------------------