├── .eslintrc ├── .gitignore ├── README.md ├── desktop-demo.gif ├── index.html ├── package.json ├── public └── vite.svg ├── responsive-demo.gif ├── src ├── icons │ ├── brain.svg │ ├── bulb.svg │ ├── customers.svg │ ├── rocket.svg │ ├── seo.svg │ └── target.svg ├── main.ts ├── style.css ├── typescript.svg └── vite-env.d.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/README.md -------------------------------------------------------------------------------- /desktop-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/desktop-demo.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/public/vite.svg -------------------------------------------------------------------------------- /responsive-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/responsive-demo.gif -------------------------------------------------------------------------------- /src/icons/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/src/icons/brain.svg -------------------------------------------------------------------------------- /src/icons/bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/src/icons/bulb.svg -------------------------------------------------------------------------------- /src/icons/customers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/src/icons/customers.svg -------------------------------------------------------------------------------- /src/icons/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/src/icons/rocket.svg -------------------------------------------------------------------------------- /src/icons/seo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/src/icons/seo.svg -------------------------------------------------------------------------------- /src/icons/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/src/icons/target.svg -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/src/style.css -------------------------------------------------------------------------------- /src/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/src/typescript.svg -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nat-davydova/timeline-slider-concept/HEAD/yarn.lock --------------------------------------------------------------------------------