├── .eslintrc.cjs ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── labels.yml └── workflows │ ├── labels.yml │ ├── lighthouse-badger-easy.yml │ ├── pr-labels.yml │ ├── stale.yml │ └── static.yml ├── .gitignore ├── .nvmrc ├── .stylelintrc.cjs ├── LICENSE ├── README.md ├── index.html ├── jsconfig.json ├── lighthouse_results ├── desktop │ ├── issam_seghir_github_io_captions_ai_.html │ └── pagespeed.svg └── mobile │ ├── issam_seghir_github_io_captions_ai_.html │ └── pagespeed.svg ├── mockup-desktop.png ├── mockup-mobile.png ├── package.json ├── postcss.config.js ├── public └── fonts │ └── aileron │ ├── Aileron-Black.woff2 │ ├── Aileron-Bold.woff2 │ ├── Aileron-Heavy.woff2 │ ├── Aileron-Light.woff2 │ ├── Aileron-Regular.woff2 │ ├── Aileron-SemiBold.woff2 │ ├── Aileron-Thin.woff2 │ └── Aileron-UltraLight.woff2 ├── src ├── assets │ ├── images │ │ ├── ai-profile.png │ │ ├── card-img-1.jpg │ │ ├── card-img-2.jpg │ │ ├── card-img-3.webp │ │ ├── edit-grid-1.jpg │ │ ├── edit-grid-2.webp │ │ ├── edit-grid-3.jpg │ │ ├── edit-grid-6.jpg │ │ ├── edit-mini-screen-3.webp │ │ ├── edit-mini-screen-5.jpg │ │ ├── edit-phone-screen-1.jpg │ │ ├── edit-phone-screen-2.jpg │ │ ├── edit-phone-screen-3.webp │ │ ├── edit-phone-screen-4.jpg │ │ ├── edit-phone-screen-5.jpg │ │ ├── edit-phone-screen-6.jpg │ │ ├── hero-mockup-img.webp │ │ ├── hero-video-poster.jpeg │ │ ├── mockup-phone-menu.webp │ │ ├── mockup.webp │ │ ├── person.png │ │ ├── phone-dubbing-posture.jpeg │ │ ├── phone-extract-posture.jpg │ │ ├── phone-metadata-posture.jpeg │ │ ├── phone-screen-1.webp │ │ ├── phone-screen-2.webp │ │ ├── phone-screen-3.webp │ │ ├── phone-screen-4.webp │ │ ├── phone-screen-5.jpg │ │ ├── sound-mini-screen.webp │ │ └── voice-phone.png │ ├── logo │ │ ├── apple-touch-icon.png │ │ ├── fiveicon.png │ │ └── logo.svg │ ├── svg │ │ ├── arrow.svg │ │ ├── camera-frames.svg │ │ ├── edit-grid-4.svg │ │ ├── edit-grid-5.svg │ │ ├── edit-icon-1.svg │ │ ├── edit-icon-2.svg │ │ ├── edit-icon-3.svg │ │ ├── edit-icon-4.svg │ │ ├── edit-icon-5.svg │ │ ├── edit-mini-screen-2.svg │ │ ├── edit-mini-screen-4.svg │ │ ├── edit-mini-screen-6.svg │ │ ├── gradient-blur-big.svg │ │ ├── gradient-blur-dept.svg │ │ ├── gradient-blur-med.svg │ │ ├── gradient-blur.svg │ │ ├── help-chat.svg │ │ ├── icons-spirit.svg │ │ ├── lines.svg │ │ ├── messages.svg │ │ ├── shadow-blur-big.svg │ │ ├── shadow-blur.svg │ │ └── voice-wave.svg │ └── videos │ │ ├── Phone-Dubbing.webm │ │ ├── Phone-Extract.webm │ │ ├── Phone-Metadata.webm │ │ ├── camera.webm │ │ ├── music.webm │ │ └── recording.webm ├── js │ ├── headerAnimation.js │ ├── main.js │ └── mediaQuery.js └── scss │ ├── abstracts │ ├── _animations.scss │ ├── _breakpoints.scss │ ├── _functions.scss │ ├── _index.scss │ ├── _mixins.scss │ └── _variables.scss │ ├── base │ ├── _base.scss │ ├── _helpers.scss │ ├── _index.scss │ ├── _reset.scss │ └── _typography.scss │ ├── layout │ ├── _ai.scss │ ├── _distribute.scss │ ├── _edit.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _hero.scss │ ├── _index.scss │ ├── _layout.scss │ ├── _product.scss │ ├── _record.scss │ ├── _sound.scss │ └── _statistic.scss │ ├── main.scss │ ├── utilities-override │ └── _index.scss │ └── utilities │ ├── _index.scss │ └── _lenis.scss └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @issam-seghir 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/lighthouse-badger-easy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.github/workflows/lighthouse-badger-easy.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.github/workflows/pr-labels.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.17.1 2 | -------------------------------------------------------------------------------- /.stylelintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/.stylelintrc.cjs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/index.html -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lighthouse_results/desktop/issam_seghir_github_io_captions_ai_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/lighthouse_results/desktop/issam_seghir_github_io_captions_ai_.html -------------------------------------------------------------------------------- /lighthouse_results/desktop/pagespeed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/lighthouse_results/desktop/pagespeed.svg -------------------------------------------------------------------------------- /lighthouse_results/mobile/issam_seghir_github_io_captions_ai_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/lighthouse_results/mobile/issam_seghir_github_io_captions_ai_.html -------------------------------------------------------------------------------- /lighthouse_results/mobile/pagespeed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/lighthouse_results/mobile/pagespeed.svg -------------------------------------------------------------------------------- /mockup-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/mockup-desktop.png -------------------------------------------------------------------------------- /mockup-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/mockup-mobile.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/fonts/aileron/Aileron-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/public/fonts/aileron/Aileron-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/aileron/Aileron-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/public/fonts/aileron/Aileron-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/aileron/Aileron-Heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/public/fonts/aileron/Aileron-Heavy.woff2 -------------------------------------------------------------------------------- /public/fonts/aileron/Aileron-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/public/fonts/aileron/Aileron-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/aileron/Aileron-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/public/fonts/aileron/Aileron-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/aileron/Aileron-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/public/fonts/aileron/Aileron-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/aileron/Aileron-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/public/fonts/aileron/Aileron-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/aileron/Aileron-UltraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/public/fonts/aileron/Aileron-UltraLight.woff2 -------------------------------------------------------------------------------- /src/assets/images/ai-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/ai-profile.png -------------------------------------------------------------------------------- /src/assets/images/card-img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/card-img-1.jpg -------------------------------------------------------------------------------- /src/assets/images/card-img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/card-img-2.jpg -------------------------------------------------------------------------------- /src/assets/images/card-img-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/card-img-3.webp -------------------------------------------------------------------------------- /src/assets/images/edit-grid-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-grid-1.jpg -------------------------------------------------------------------------------- /src/assets/images/edit-grid-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-grid-2.webp -------------------------------------------------------------------------------- /src/assets/images/edit-grid-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-grid-3.jpg -------------------------------------------------------------------------------- /src/assets/images/edit-grid-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-grid-6.jpg -------------------------------------------------------------------------------- /src/assets/images/edit-mini-screen-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-mini-screen-3.webp -------------------------------------------------------------------------------- /src/assets/images/edit-mini-screen-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-mini-screen-5.jpg -------------------------------------------------------------------------------- /src/assets/images/edit-phone-screen-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-phone-screen-1.jpg -------------------------------------------------------------------------------- /src/assets/images/edit-phone-screen-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-phone-screen-2.jpg -------------------------------------------------------------------------------- /src/assets/images/edit-phone-screen-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-phone-screen-3.webp -------------------------------------------------------------------------------- /src/assets/images/edit-phone-screen-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-phone-screen-4.jpg -------------------------------------------------------------------------------- /src/assets/images/edit-phone-screen-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-phone-screen-5.jpg -------------------------------------------------------------------------------- /src/assets/images/edit-phone-screen-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/edit-phone-screen-6.jpg -------------------------------------------------------------------------------- /src/assets/images/hero-mockup-img.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/hero-mockup-img.webp -------------------------------------------------------------------------------- /src/assets/images/hero-video-poster.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/hero-video-poster.jpeg -------------------------------------------------------------------------------- /src/assets/images/mockup-phone-menu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/mockup-phone-menu.webp -------------------------------------------------------------------------------- /src/assets/images/mockup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/mockup.webp -------------------------------------------------------------------------------- /src/assets/images/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/person.png -------------------------------------------------------------------------------- /src/assets/images/phone-dubbing-posture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/phone-dubbing-posture.jpeg -------------------------------------------------------------------------------- /src/assets/images/phone-extract-posture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/phone-extract-posture.jpg -------------------------------------------------------------------------------- /src/assets/images/phone-metadata-posture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/phone-metadata-posture.jpeg -------------------------------------------------------------------------------- /src/assets/images/phone-screen-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/phone-screen-1.webp -------------------------------------------------------------------------------- /src/assets/images/phone-screen-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/phone-screen-2.webp -------------------------------------------------------------------------------- /src/assets/images/phone-screen-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/phone-screen-3.webp -------------------------------------------------------------------------------- /src/assets/images/phone-screen-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/phone-screen-4.webp -------------------------------------------------------------------------------- /src/assets/images/phone-screen-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/phone-screen-5.jpg -------------------------------------------------------------------------------- /src/assets/images/sound-mini-screen.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/sound-mini-screen.webp -------------------------------------------------------------------------------- /src/assets/images/voice-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/images/voice-phone.png -------------------------------------------------------------------------------- /src/assets/logo/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/logo/apple-touch-icon.png -------------------------------------------------------------------------------- /src/assets/logo/fiveicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/logo/fiveicon.png -------------------------------------------------------------------------------- /src/assets/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/logo/logo.svg -------------------------------------------------------------------------------- /src/assets/svg/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/arrow.svg -------------------------------------------------------------------------------- /src/assets/svg/camera-frames.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/camera-frames.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-grid-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-grid-4.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-grid-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-grid-5.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-icon-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-icon-1.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-icon-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-icon-2.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-icon-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-icon-3.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-icon-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-icon-4.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-icon-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-icon-5.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-mini-screen-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-mini-screen-2.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-mini-screen-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-mini-screen-4.svg -------------------------------------------------------------------------------- /src/assets/svg/edit-mini-screen-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/edit-mini-screen-6.svg -------------------------------------------------------------------------------- /src/assets/svg/gradient-blur-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/gradient-blur-big.svg -------------------------------------------------------------------------------- /src/assets/svg/gradient-blur-dept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/gradient-blur-dept.svg -------------------------------------------------------------------------------- /src/assets/svg/gradient-blur-med.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/gradient-blur-med.svg -------------------------------------------------------------------------------- /src/assets/svg/gradient-blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/gradient-blur.svg -------------------------------------------------------------------------------- /src/assets/svg/help-chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/help-chat.svg -------------------------------------------------------------------------------- /src/assets/svg/icons-spirit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/icons-spirit.svg -------------------------------------------------------------------------------- /src/assets/svg/lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/lines.svg -------------------------------------------------------------------------------- /src/assets/svg/messages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/messages.svg -------------------------------------------------------------------------------- /src/assets/svg/shadow-blur-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/shadow-blur-big.svg -------------------------------------------------------------------------------- /src/assets/svg/shadow-blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/shadow-blur.svg -------------------------------------------------------------------------------- /src/assets/svg/voice-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/svg/voice-wave.svg -------------------------------------------------------------------------------- /src/assets/videos/Phone-Dubbing.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/videos/Phone-Dubbing.webm -------------------------------------------------------------------------------- /src/assets/videos/Phone-Extract.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/videos/Phone-Extract.webm -------------------------------------------------------------------------------- /src/assets/videos/Phone-Metadata.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/videos/Phone-Metadata.webm -------------------------------------------------------------------------------- /src/assets/videos/camera.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/videos/camera.webm -------------------------------------------------------------------------------- /src/assets/videos/music.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/videos/music.webm -------------------------------------------------------------------------------- /src/assets/videos/recording.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/assets/videos/recording.webm -------------------------------------------------------------------------------- /src/js/headerAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/js/headerAnimation.js -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/js/main.js -------------------------------------------------------------------------------- /src/js/mediaQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/js/mediaQuery.js -------------------------------------------------------------------------------- /src/scss/abstracts/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/abstracts/_animations.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/abstracts/_breakpoints.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_functions.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scss/abstracts/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/abstracts/_index.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/abstracts/_mixins.scss -------------------------------------------------------------------------------- /src/scss/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/abstracts/_variables.scss -------------------------------------------------------------------------------- /src/scss/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/base/_base.scss -------------------------------------------------------------------------------- /src/scss/base/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/base/_helpers.scss -------------------------------------------------------------------------------- /src/scss/base/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/base/_index.scss -------------------------------------------------------------------------------- /src/scss/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/base/_reset.scss -------------------------------------------------------------------------------- /src/scss/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/base/_typography.scss -------------------------------------------------------------------------------- /src/scss/layout/_ai.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_ai.scss -------------------------------------------------------------------------------- /src/scss/layout/_distribute.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_distribute.scss -------------------------------------------------------------------------------- /src/scss/layout/_edit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_edit.scss -------------------------------------------------------------------------------- /src/scss/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_footer.scss -------------------------------------------------------------------------------- /src/scss/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_header.scss -------------------------------------------------------------------------------- /src/scss/layout/_hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_hero.scss -------------------------------------------------------------------------------- /src/scss/layout/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_index.scss -------------------------------------------------------------------------------- /src/scss/layout/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_layout.scss -------------------------------------------------------------------------------- /src/scss/layout/_product.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_product.scss -------------------------------------------------------------------------------- /src/scss/layout/_record.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_record.scss -------------------------------------------------------------------------------- /src/scss/layout/_sound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_sound.scss -------------------------------------------------------------------------------- /src/scss/layout/_statistic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/layout/_statistic.scss -------------------------------------------------------------------------------- /src/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/main.scss -------------------------------------------------------------------------------- /src/scss/utilities-override/_index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scss/utilities/_index.scss: -------------------------------------------------------------------------------- 1 | @forward "lenis"; 2 | -------------------------------------------------------------------------------- /src/scss/utilities/_lenis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/src/scss/utilities/_lenis.scss -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/issam-seghir/Captions-AI/HEAD/vite.config.js --------------------------------------------------------------------------------