├── .eslintignore ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── new-component-ticket.md ├── PULL_REQUEST_TEMPLATE │ └── new_component.md └── workflows │ └── deploy.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierrc.cjs ├── .storybook ├── main.ts └── preview.tsx ├── .vscode ├── extensions.json └── settings.json ├── .yarn └── releases │ └── yarn-4.2.2.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── animata ├── accordion │ ├── faq.stories.tsx │ └── faq.tsx ├── background │ ├── animated-beam.stories.tsx │ ├── animated-beam.tsx │ ├── blurry-blob.stories.tsx │ ├── blurry-blob.tsx │ ├── diagonal-lines.stories.tsx │ ├── diagonal-lines.tsx │ ├── dot.stories.tsx │ ├── dot.tsx │ ├── grid.stories.tsx │ ├── grid.tsx │ ├── interactive-grid.stories.tsx │ ├── interactive-grid.tsx │ ├── moving-gradient.stories.tsx │ ├── moving-gradient.tsx │ ├── zigzag.stories.tsx │ └── zigzag.tsx ├── bento-grid │ ├── eight.stories.tsx │ ├── eight.tsx │ ├── eleven.stories.tsx │ ├── eleven.tsx │ ├── five.stories.tsx │ ├── five.tsx │ ├── four.stories.tsx │ ├── four.tsx │ ├── gradient.stories.tsx │ ├── gradient.tsx │ ├── nine.stories.tsx │ ├── nine.tsx │ ├── seven.stories.tsx │ ├── seven.tsx │ ├── six.stories.tsx │ ├── six.tsx │ ├── ten.stories.tsx │ ├── ten.tsx │ ├── three.stories.tsx │ └── three.tsx ├── button │ ├── ai-button.stories.tsx │ ├── ai-button.tsx │ ├── algolia-blue-button.stories.tsx │ ├── algolia-blue-button.tsx │ ├── algolia-white-button.stories.tsx │ ├── algolia-white-button.tsx │ ├── animated-follow-button.stories.tsx │ ├── animated-follow-button.tsx │ ├── arrow-button.stories.tsx │ ├── arrow-button.tsx │ ├── duolingo.stories.tsx │ ├── duolingo.tsx │ ├── external-link-button.stories.tsx │ ├── external-link-button.tsx │ ├── get-started-button.stories.tsx │ ├── get-started-button.tsx │ ├── ripple-button.stories.tsx │ ├── ripple-button.tsx │ ├── shining-button.stories.tsx │ ├── shining-button.tsx │ ├── slide-arrow-button.stories.tsx │ ├── slide-arrow-button.tsx │ ├── status-button.stories.tsx │ ├── status-button.tsx │ ├── swipe-button.stories.tsx │ ├── swipe-button.tsx │ ├── toggle-switch.stories.tsx │ ├── toggle-switch.tsx │ ├── work-button.stories.tsx │ └── work-button.tsx ├── card │ ├── WebHooks-card.tsx │ ├── blur-stack-card.stories.tsx │ ├── blur-stack-card.tsx │ ├── card-comment.stories.tsx │ ├── card-comment.tsx │ ├── card-spread.stories.tsx │ ├── card-spread.tsx │ ├── case-study-card.stories.tsx │ ├── case-study-card.tsx │ ├── comment-reply-card.stories.tsx │ ├── comment-reply-card.tsx │ ├── email-feature-card.stories.tsx │ ├── email-feature-card.tsx │ ├── flip-card.stories.tsx │ ├── flip-card.tsx │ ├── fluid-tabs.stories.tsx │ ├── fluid-tabs.tsx │ ├── github-card-shiny.stories.tsx │ ├── github-card-shiny.tsx │ ├── github-card-skew.stories.tsx │ ├── github-card-skew.tsx │ ├── glowing-card.stories.tsx │ ├── glowing-card.tsx │ ├── integration-pills.stories.tsx │ ├── integration-pills.tsx │ ├── led-board.stories.tsx │ ├── led-board.tsx │ ├── notice-card.stories.tsx │ ├── notice-card.tsx │ ├── notification-card.stories.tsx │ ├── notification-card.tsx │ ├── notify-user-info.stories.tsx │ ├── notify-user-info.tsx │ ├── reminder-scheduler.stories.tsx │ ├── reminder-scheduler.tsx │ ├── score-card.stories.tsx │ ├── score-card.tsx │ ├── staggered-card.stories.tsx │ ├── staggered-card.tsx │ ├── subscribe-card.stories.tsx │ ├── subscribe-card.tsx │ ├── survey-card.stories.tsx │ ├── survey-card.tsx │ ├── swap-card.stories.tsx │ ├── swap-card.tsx │ ├── swap-text-card.stories.tsx │ ├── swap-text-card.tsx │ ├── tilted-card.stories.tsx │ ├── tilted-card.tsx │ └── webhooks-card.stories.tsx ├── carousel │ ├── expandable.stories.tsx │ ├── expandable.tsx │ ├── image-carousel.stories.tsx │ └── image-carousel.tsx ├── container │ ├── animated-border-trail.stories.tsx │ ├── animated-border-trail.tsx │ ├── animated-dock.stories.tsx │ ├── animated-dock.tsx │ ├── cursor-tracker.stories.tsx │ ├── cursor-tracker.tsx │ ├── fibonacci-lines.stories.tsx │ ├── fibonacci-lines.tsx │ ├── marquee.stories.tsx │ ├── marquee.tsx │ ├── nav-tabs.stories.tsx │ ├── nav-tabs.tsx │ ├── scrolling-testimonials.stories.tsx │ ├── scrolling-testimonials.tsx │ ├── shift-tabs.stories.tsx │ └── shift-tabs.tsx ├── fabs │ ├── speed-dial.stories.tsx │ └── speed-dial.tsx ├── feature-cards │ ├── confirmation-message.stories.tsx │ ├── confirmation-message.tsx │ ├── content-scan.stories.tsx │ └── content-scan.tsx ├── graphs │ ├── bar-chart.stories.tsx │ ├── bar-chart.tsx │ ├── commit-graph.stories.tsx │ ├── commit-graph.tsx │ ├── donut-chart.stories.tsx │ ├── donut-chart.tsx │ ├── gauge-chart.stories.tsx │ ├── gauge-chart.tsx │ ├── progress.stories.tsx │ ├── progress.tsx │ ├── ring-chart.stories.tsx │ └── ring-chart.tsx ├── hero │ ├── hero-section-text-hover.stories.tsx │ ├── hero-section-text-hover.tsx │ ├── hero-section.stories.tsx │ ├── hero-section.tsx │ ├── product-features.stories.tsx │ ├── product-features.tsx │ ├── shape-shifter.stories.tsx │ ├── shape-shifter.tsx │ ├── slack-intro.stories.tsx │ └── slack-intro.tsx ├── icon │ ├── hover-interaction.stories.tsx │ ├── hover-interaction.tsx │ ├── icon-ripple.stories.tsx │ └── icon-ripple.tsx ├── image │ ├── disclose-image.stories.tsx │ ├── disclose-image.tsx │ ├── image-box-shadow.stories.tsx │ ├── image-box-shadow.tsx │ ├── images-reveal.stories.tsx │ ├── images-reveal.tsx │ ├── photo-booth.stories.tsx │ ├── photo-booth.tsx │ ├── skew-image.stories.tsx │ ├── skew-image.tsx │ ├── tilted-cover.stories.tsx │ ├── tilted-cover.tsx │ ├── trailing-image.stories.tsx │ ├── trailing-image.tsx │ ├── zoom-image.stories.tsx │ └── zoom-image.tsx ├── list │ ├── avatar-list.stories.tsx │ ├── avatar-list.tsx │ ├── flipping-cards.stories.tsx │ ├── flipping-cards.tsx │ ├── flower-menu.stories.tsx │ ├── flower-menu.tsx │ ├── menu-animation.stories.tsx │ ├── menu-animation.tsx │ ├── orbiting-items-3-d.stories.tsx │ ├── orbiting-items-3-d.tsx │ ├── orbiting-items.stories.tsx │ ├── orbiting-items.tsx │ ├── reveal-image.stories.tsx │ ├── reveal-image.tsx │ ├── transaction-list.stories.tsx │ ├── transaction-list.tsx │ ├── transition-list.stories.tsx │ └── transition-list.tsx ├── overlay │ ├── modal.stories.tsx │ └── modal.tsx ├── preloader │ ├── vertical-tiles.stories.tsx │ └── vertical-tiles.tsx ├── progress │ ├── animatedtimeline.stories.tsx │ ├── animatedtimeline.tsx │ ├── spinner.stories.tsx │ └── spinner.tsx ├── section │ ├── pricing.stories.tsx │ └── pricing.tsx ├── skeleton │ ├── code.stories.tsx │ ├── code.tsx │ ├── cookie-banner.stories.tsx │ ├── cookie-banner.tsx │ ├── list.stories.tsx │ ├── list.tsx │ ├── receipt.stories.tsx │ ├── receipt.tsx │ ├── report.stories.tsx │ ├── report.tsx │ ├── wide-card.stories.tsx │ └── wide-card.tsx ├── text │ ├── animated-gradient-text.stories.tsx │ ├── animated-gradient-text.tsx │ ├── bold-copy.stories.tsx │ ├── bold-copy.tsx │ ├── counter.stories.tsx │ ├── counter.tsx │ ├── cycle-text.stories.tsx │ ├── cycle-text.tsx │ ├── double-underline.stories.tsx │ ├── double-underline.tsx │ ├── gibberish-text.stories.tsx │ ├── gibberish-text.tsx │ ├── glitch-text.stories.tsx │ ├── glitch-text.tsx │ ├── jitter-text.stories.tsx │ ├── jitter-text.tsx │ ├── jumping-text-instagram.stories.tsx │ ├── jumping-text-instagram.tsx │ ├── mask-text.stories.tsx │ ├── mask-text.tsx │ ├── mirror-text.stories.tsx │ ├── mirror-text.tsx │ ├── scroll-reveal.stories.tsx │ ├── scroll-reveal.tsx │ ├── split-text.stories.tsx │ ├── split-text.tsx │ ├── staggered-letter.stories.tsx │ ├── staggered-letter.tsx │ ├── swap-text.stories.tsx │ ├── swap-text.tsx │ ├── text-border-animation.stories.tsx │ ├── text-border-animation.tsx │ ├── text-explode-imessage.stories.tsx │ ├── text-explode-imessage.tsx │ ├── text-flip.stories.tsx │ ├── text-flip.tsx │ ├── ticker.stories.tsx │ ├── ticker.tsx │ ├── typing-text.stories.tsx │ ├── typing-text.tsx │ ├── underline-hover-text.stories.tsx │ ├── underline-hover-text.tsx │ ├── wave-reveal.stories.tsx │ └── wave-reveal.tsx └── widget │ ├── alarm-clock.stories.tsx │ ├── alarm-clock.tsx │ ├── battery-level.stories.tsx │ ├── battery-level.tsx │ ├── battery.stories.tsx │ ├── battery.tsx │ ├── calendar-event.stories.tsx │ ├── calendar-event.tsx │ ├── calendar-widget.stories.tsx │ ├── calendar-widget.tsx │ ├── calorie-counter.stories.tsx │ ├── calorie-counter.tsx │ ├── clock-with-photo.stories.tsx │ ├── clock-with-photo.tsx │ ├── cycling.stories.tsx │ ├── cycling.tsx │ ├── delivery-card.stories.tsx │ ├── delivery-card.tsx │ ├── direction-card.stories.tsx │ ├── direction-card.tsx │ ├── expense-tracker.stories.tsx │ ├── expense-tracker.tsx │ ├── flight-widget.stories.tsx │ ├── flight-widget.tsx │ ├── fund-widget.stories.tsx │ ├── fund-widget.tsx │ ├── live-score.stories.tsx │ ├── live-score.tsx │ ├── mobile-detail.stories.tsx │ ├── mobile-detail.tsx │ ├── music-stack-interaction.stories.tsx │ ├── music-stack-interaction.tsx │ ├── music-widget.stories.tsx │ ├── music-widget.tsx │ ├── notes.stories.tsx │ ├── notes.tsx │ ├── profile.stories.tsx │ ├── profile.tsx │ ├── reminder-widget.stories.tsx │ ├── reminder-widget.tsx │ ├── reminder.stories.tsx │ ├── reminder.tsx │ ├── score-board.stories.tsx │ ├── score-board.tsx │ ├── security-alert.stories.tsx │ ├── security-alert.tsx │ ├── shopping-list.stories.tsx │ ├── shopping-list.tsx │ ├── sleep-tracker.stories.tsx │ ├── sleep-tracker.tsx │ ├── storage-status.stories.tsx │ ├── storage-status.tsx │ ├── storage-widget.stories.tsx │ ├── storage-widget.tsx │ ├── study-timer.stories.tsx │ ├── study-timer.tsx │ ├── team-clock.stories.tsx │ ├── team-clock.tsx │ ├── video-chat.stories.tsx │ ├── video-chat.tsx │ ├── vpn-widget.stories.tsx │ ├── vpn-widget.tsx │ ├── water-tracker.stories.tsx │ ├── water-tracker.tsx │ ├── weather-card.stories.tsx │ ├── weather-card.tsx │ ├── weekly-progress.stories.tsx │ └── weekly-progress.tsx ├── app ├── _landing │ ├── call-to-action.tsx │ ├── faq-section.tsx │ ├── grid-view.tsx │ ├── hero-title.tsx │ ├── hero.tsx │ ├── highlight.tsx │ ├── mode-switcher.tsx │ ├── newsletter.tsx │ ├── section-one.tsx │ ├── section-two.tsx │ ├── skeleton-section.tsx │ ├── testimonials.tsx │ ├── thunder.tsx │ └── widget-section.tsx ├── blog │ ├── [[...slug]] │ │ └── page.tsx │ └── layout.tsx ├── credits │ └── page.tsx ├── docs │ ├── [[...slug]] │ │ ├── nav-menu.tsx │ │ └── page.tsx │ └── layout.tsx ├── layout.tsx ├── page.tsx ├── providers.tsx └── sitemap.ts ├── commitlint.config.cjs ├── components.json ├── components ├── ads.tsx ├── announcement.tsx ├── callout.tsx ├── code-block-wrapper.tsx ├── command-menu.tsx ├── component-card.tsx ├── component-example.tsx ├── component-link-wrapper.tsx ├── component-list-item.tsx ├── component-preview.tsx ├── component-source.tsx ├── copy-button.tsx ├── drawer.tsx ├── framework-docs.tsx ├── header-dock-item.tsx ├── icons.tsx ├── main-nav.tsx ├── mdx-base-components.tsx ├── mdx-components.tsx ├── mobile-nav.tsx ├── mode-toggle.tsx ├── page-header.tsx ├── pager.tsx ├── preview-container.tsx ├── providers.tsx ├── reload-button.tsx ├── remount-on-mouse-in.tsx ├── sidebar-nav.tsx ├── site-footer.tsx ├── site-header.tsx ├── tailwind-indicator.tsx ├── toc.tsx └── ui │ ├── accordion.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── tabs.tsx │ └── tooltip.tsx ├── config ├── blog.ts ├── docs.ts ├── index.ts └── site.ts ├── content ├── blog │ ├── hacktoberfest-2024.mdx │ └── index.mdx └── docs │ ├── accordion │ └── faq.mdx │ ├── background │ ├── animated-beam.mdx │ ├── blurry-blob.mdx │ ├── diagonal-lines.mdx │ ├── dot.mdx │ ├── grid.mdx │ ├── interactive-grid.mdx │ ├── moving-gradient.mdx │ └── zigzag.mdx │ ├── bento-grid │ ├── eight.mdx │ ├── eleven.mdx │ ├── five.mdx │ ├── four.mdx │ ├── gradient.mdx │ ├── index.mdx │ ├── nine.mdx │ ├── seven.mdx │ ├── six.mdx │ ├── ten.mdx │ └── three.mdx │ ├── button │ ├── ai-button.mdx │ ├── algolia-blue-button.mdx │ ├── algolia-white-button.mdx │ ├── animated-follow-button.mdx │ ├── duolingo.mdx │ ├── external-link-button.mdx │ ├── get-started-button.mdx │ ├── index.mdx │ ├── ripple-button.mdx │ ├── shining-button.mdx │ ├── slide-arrow-button.mdx │ ├── status-button.mdx │ ├── swipe-button.mdx │ ├── toggle-switch.mdx │ └── work-button.mdx │ ├── card │ ├── blur-stack-card.mdx │ ├── card-comment.mdx │ ├── card-spread.mdx │ ├── case-study-card.mdx │ ├── comment-reply-card.mdx │ ├── email-feature-card.mdx │ ├── flip-card.mdx │ ├── fluid-tabs.mdx │ ├── github-card-shiny.mdx │ ├── github-card-skew.mdx │ ├── glowing-card.mdx │ ├── integration-pills.mdx │ ├── led-board.mdx │ ├── notice-card.mdx │ ├── notification-card.mdx │ ├── notify-user-info.mdx │ ├── reminder-scheduler.mdx │ ├── score-card.mdx │ ├── staggered-card.mdx │ ├── subscribe-card.mdx │ ├── survey-card.mdx │ ├── swap-card.mdx │ ├── swap-text-card.mdx │ ├── tilted-card.mdx │ └── webhooks-card.mdx │ ├── carousel │ ├── expandable.mdx │ └── image-carousel.mdx │ ├── changelog.mdx │ ├── container │ ├── animated-border-trail.mdx │ ├── animated-dock.mdx │ ├── cursor-tracker.mdx │ ├── fibonacci-lines.mdx │ ├── marquee.mdx │ ├── nav-tabs.mdx │ ├── scrolling-testimonials.mdx │ └── shift-tabs.mdx │ ├── contributing │ ├── best-practices.mdx │ ├── components.mdx │ ├── folder-structure.mdx │ ├── guidelines.mdx │ ├── index.mdx │ └── running-locally.mdx │ ├── fabs │ └── speed-dial.mdx │ ├── feature-cards │ ├── confirmation-message.mdx │ └── content-scan.mdx │ ├── graphs │ ├── bar-chart.mdx │ ├── commit-graph.mdx │ ├── donut-chart.mdx │ ├── gauge-chart.mdx │ ├── index.mdx │ ├── progress.mdx │ └── ring-chart.mdx │ ├── hero │ ├── hero-section-text-hover.mdx │ ├── hero-section.mdx │ ├── product-features.mdx │ ├── shape-shifter.mdx │ └── slack-intro.mdx │ ├── icon │ ├── hover-interaction.mdx │ └── icon-ripple.mdx │ ├── image │ ├── disclose-image.mdx │ ├── image-box-shadow.mdx │ ├── images-reveal.mdx │ ├── photo-booth.mdx │ ├── skew-image.mdx │ ├── tilted-cover.mdx │ ├── trailing-image.mdx │ └── zoom-image.mdx │ ├── index.mdx │ ├── list │ ├── avatar-list.mdx │ ├── flipping-cards.mdx │ ├── flower-menu.mdx │ ├── menu-animation.mdx │ ├── orbiting-items-3-d.mdx │ ├── orbiting-items.mdx │ ├── reveal-image.mdx │ ├── transaction-list.mdx │ └── transition-list.mdx │ ├── overlay │ └── modal.mdx │ ├── preloader │ └── vertical-tiles.mdx │ ├── progress │ ├── animatedtimeline.mdx │ └── spinner.mdx │ ├── section │ └── pricing.mdx │ ├── setup.mdx │ ├── skeleton │ └── index.mdx │ ├── text │ ├── animated-gradient-text.mdx │ ├── bold-copy.mdx │ ├── counter.mdx │ ├── cycle-text.mdx │ ├── double-underline.mdx │ ├── gibberish-text.mdx │ ├── glitch-text.mdx │ ├── jitter-text.mdx │ ├── jumping-text-instagram.mdx │ ├── mask-text.mdx │ ├── mirror-text.mdx │ ├── scroll-reveal.mdx │ ├── split-text.mdx │ ├── staggered-letter.mdx │ ├── swap-text.mdx │ ├── text-border-animation.mdx │ ├── text-explode-imessage.mdx │ ├── text-flip.mdx │ ├── ticker.mdx │ ├── typing-text.mdx │ ├── underline-hover-text.mdx │ └── wave-reveal.mdx │ └── widget │ ├── alarm-clock.mdx │ ├── battery-level.mdx │ ├── battery.mdx │ ├── calendar-event.mdx │ ├── calendar-widget.mdx │ ├── calorie-counter.mdx │ ├── clock-with-photo.mdx │ ├── cycling.mdx │ ├── delivery-card.mdx │ ├── direction-card.mdx │ ├── expense-tracker.mdx │ ├── flight-widget.mdx │ ├── fund-widget.mdx │ ├── index.mdx │ ├── live-score.mdx │ ├── mobile-detail.mdx │ ├── music-stack-interaction.mdx │ ├── music-widget.mdx │ ├── notes.mdx │ ├── profile.mdx │ ├── reminder-widget.mdx │ ├── reminder.mdx │ ├── score-board.mdx │ ├── security-alert.mdx │ ├── shopping-list.mdx │ ├── sleep-tracker.mdx │ ├── storage-status.mdx │ ├── storage-widget.mdx │ ├── study-timer.mdx │ ├── team-clock.mdx │ ├── video-chat.mdx │ ├── vpn-widget.mdx │ ├── water-tracker.mdx │ ├── weather-card.mdx │ └── weekly-progress.mdx ├── contentlayer.config.ts ├── global.d.ts ├── hooks ├── use-lock-body.ts ├── use-media-query.ts ├── use-mounted.ts ├── use-mouse-position.ts ├── use-mutation-observer.ts └── use-newsletter-subscription.ts ├── lib ├── events.ts ├── toc.ts └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── A.png ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── bg-hills.jpg ├── browserconfig.xml ├── circle.svg ├── codse.webp ├── cursor.png ├── dog.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── icon512_maskable.png ├── icon512_rounded.png ├── install.png ├── jumping-man.png ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── next.svg ├── og.png ├── safari-pinned-tab.svg ├── site.webmanifest ├── vercel.svg └── widget │ └── music.jpg ├── scripts └── create-new.js ├── styles ├── globals.css ├── mdx.css └── storybook.css ├── tailwind.config.ts ├── templates ├── component ├── doc └── story ├── tsconfig.json ├── types ├── index.ts └── unist.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-component-ticket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.github/ISSUE_TEMPLATE/new-component-ticket.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/new_component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.github/PULL_REQUEST_TEMPLATE/new_component.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx --no-install commitlint --edit "$1" -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.2.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.yarn/releases/yarn-4.2.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/README.md -------------------------------------------------------------------------------- /animata/accordion/faq.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/accordion/faq.stories.tsx -------------------------------------------------------------------------------- /animata/accordion/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/accordion/faq.tsx -------------------------------------------------------------------------------- /animata/background/animated-beam.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/animated-beam.stories.tsx -------------------------------------------------------------------------------- /animata/background/animated-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/animated-beam.tsx -------------------------------------------------------------------------------- /animata/background/blurry-blob.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/blurry-blob.stories.tsx -------------------------------------------------------------------------------- /animata/background/blurry-blob.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/blurry-blob.tsx -------------------------------------------------------------------------------- /animata/background/diagonal-lines.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/diagonal-lines.stories.tsx -------------------------------------------------------------------------------- /animata/background/diagonal-lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/diagonal-lines.tsx -------------------------------------------------------------------------------- /animata/background/dot.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/dot.stories.tsx -------------------------------------------------------------------------------- /animata/background/dot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/dot.tsx -------------------------------------------------------------------------------- /animata/background/grid.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/grid.stories.tsx -------------------------------------------------------------------------------- /animata/background/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/grid.tsx -------------------------------------------------------------------------------- /animata/background/interactive-grid.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/interactive-grid.stories.tsx -------------------------------------------------------------------------------- /animata/background/interactive-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/interactive-grid.tsx -------------------------------------------------------------------------------- /animata/background/moving-gradient.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/moving-gradient.stories.tsx -------------------------------------------------------------------------------- /animata/background/moving-gradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/moving-gradient.tsx -------------------------------------------------------------------------------- /animata/background/zigzag.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/zigzag.stories.tsx -------------------------------------------------------------------------------- /animata/background/zigzag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/background/zigzag.tsx -------------------------------------------------------------------------------- /animata/bento-grid/eight.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/eight.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/eight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/eight.tsx -------------------------------------------------------------------------------- /animata/bento-grid/eleven.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/eleven.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/eleven.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/eleven.tsx -------------------------------------------------------------------------------- /animata/bento-grid/five.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/five.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/five.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/five.tsx -------------------------------------------------------------------------------- /animata/bento-grid/four.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/four.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/four.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/four.tsx -------------------------------------------------------------------------------- /animata/bento-grid/gradient.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/gradient.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/gradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/gradient.tsx -------------------------------------------------------------------------------- /animata/bento-grid/nine.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/nine.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/nine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/nine.tsx -------------------------------------------------------------------------------- /animata/bento-grid/seven.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/seven.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/seven.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/seven.tsx -------------------------------------------------------------------------------- /animata/bento-grid/six.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/six.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/six.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/six.tsx -------------------------------------------------------------------------------- /animata/bento-grid/ten.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/ten.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/ten.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/ten.tsx -------------------------------------------------------------------------------- /animata/bento-grid/three.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/three.stories.tsx -------------------------------------------------------------------------------- /animata/bento-grid/three.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/bento-grid/three.tsx -------------------------------------------------------------------------------- /animata/button/ai-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/ai-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/ai-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/ai-button.tsx -------------------------------------------------------------------------------- /animata/button/algolia-blue-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/algolia-blue-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/algolia-blue-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/algolia-blue-button.tsx -------------------------------------------------------------------------------- /animata/button/algolia-white-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/algolia-white-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/algolia-white-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/algolia-white-button.tsx -------------------------------------------------------------------------------- /animata/button/animated-follow-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/animated-follow-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/animated-follow-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/animated-follow-button.tsx -------------------------------------------------------------------------------- /animata/button/arrow-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/arrow-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/arrow-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/arrow-button.tsx -------------------------------------------------------------------------------- /animata/button/duolingo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/duolingo.stories.tsx -------------------------------------------------------------------------------- /animata/button/duolingo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/duolingo.tsx -------------------------------------------------------------------------------- /animata/button/external-link-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/external-link-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/external-link-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/external-link-button.tsx -------------------------------------------------------------------------------- /animata/button/get-started-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/get-started-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/get-started-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/get-started-button.tsx -------------------------------------------------------------------------------- /animata/button/ripple-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/ripple-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/ripple-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/ripple-button.tsx -------------------------------------------------------------------------------- /animata/button/shining-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/shining-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/shining-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/shining-button.tsx -------------------------------------------------------------------------------- /animata/button/slide-arrow-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/slide-arrow-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/slide-arrow-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/slide-arrow-button.tsx -------------------------------------------------------------------------------- /animata/button/status-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/status-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/status-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/status-button.tsx -------------------------------------------------------------------------------- /animata/button/swipe-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/swipe-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/swipe-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/swipe-button.tsx -------------------------------------------------------------------------------- /animata/button/toggle-switch.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/toggle-switch.stories.tsx -------------------------------------------------------------------------------- /animata/button/toggle-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/toggle-switch.tsx -------------------------------------------------------------------------------- /animata/button/work-button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/work-button.stories.tsx -------------------------------------------------------------------------------- /animata/button/work-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/button/work-button.tsx -------------------------------------------------------------------------------- /animata/card/WebHooks-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/WebHooks-card.tsx -------------------------------------------------------------------------------- /animata/card/blur-stack-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/blur-stack-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/blur-stack-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/blur-stack-card.tsx -------------------------------------------------------------------------------- /animata/card/card-comment.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/card-comment.stories.tsx -------------------------------------------------------------------------------- /animata/card/card-comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/card-comment.tsx -------------------------------------------------------------------------------- /animata/card/card-spread.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/card-spread.stories.tsx -------------------------------------------------------------------------------- /animata/card/card-spread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/card-spread.tsx -------------------------------------------------------------------------------- /animata/card/case-study-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/case-study-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/case-study-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/case-study-card.tsx -------------------------------------------------------------------------------- /animata/card/comment-reply-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/comment-reply-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/comment-reply-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/comment-reply-card.tsx -------------------------------------------------------------------------------- /animata/card/email-feature-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/email-feature-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/email-feature-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/email-feature-card.tsx -------------------------------------------------------------------------------- /animata/card/flip-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/flip-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/flip-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/flip-card.tsx -------------------------------------------------------------------------------- /animata/card/fluid-tabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/fluid-tabs.stories.tsx -------------------------------------------------------------------------------- /animata/card/fluid-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/fluid-tabs.tsx -------------------------------------------------------------------------------- /animata/card/github-card-shiny.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/github-card-shiny.stories.tsx -------------------------------------------------------------------------------- /animata/card/github-card-shiny.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/github-card-shiny.tsx -------------------------------------------------------------------------------- /animata/card/github-card-skew.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/github-card-skew.stories.tsx -------------------------------------------------------------------------------- /animata/card/github-card-skew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/github-card-skew.tsx -------------------------------------------------------------------------------- /animata/card/glowing-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/glowing-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/glowing-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/glowing-card.tsx -------------------------------------------------------------------------------- /animata/card/integration-pills.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/integration-pills.stories.tsx -------------------------------------------------------------------------------- /animata/card/integration-pills.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/integration-pills.tsx -------------------------------------------------------------------------------- /animata/card/led-board.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/led-board.stories.tsx -------------------------------------------------------------------------------- /animata/card/led-board.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/led-board.tsx -------------------------------------------------------------------------------- /animata/card/notice-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/notice-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/notice-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/notice-card.tsx -------------------------------------------------------------------------------- /animata/card/notification-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/notification-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/notification-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/notification-card.tsx -------------------------------------------------------------------------------- /animata/card/notify-user-info.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/notify-user-info.stories.tsx -------------------------------------------------------------------------------- /animata/card/notify-user-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/notify-user-info.tsx -------------------------------------------------------------------------------- /animata/card/reminder-scheduler.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/reminder-scheduler.stories.tsx -------------------------------------------------------------------------------- /animata/card/reminder-scheduler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/reminder-scheduler.tsx -------------------------------------------------------------------------------- /animata/card/score-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/score-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/score-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/score-card.tsx -------------------------------------------------------------------------------- /animata/card/staggered-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/staggered-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/staggered-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/staggered-card.tsx -------------------------------------------------------------------------------- /animata/card/subscribe-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/subscribe-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/subscribe-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/subscribe-card.tsx -------------------------------------------------------------------------------- /animata/card/survey-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/survey-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/survey-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/survey-card.tsx -------------------------------------------------------------------------------- /animata/card/swap-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/swap-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/swap-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/swap-card.tsx -------------------------------------------------------------------------------- /animata/card/swap-text-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/swap-text-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/swap-text-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/swap-text-card.tsx -------------------------------------------------------------------------------- /animata/card/tilted-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/tilted-card.stories.tsx -------------------------------------------------------------------------------- /animata/card/tilted-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/tilted-card.tsx -------------------------------------------------------------------------------- /animata/card/webhooks-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/card/webhooks-card.stories.tsx -------------------------------------------------------------------------------- /animata/carousel/expandable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/carousel/expandable.stories.tsx -------------------------------------------------------------------------------- /animata/carousel/expandable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/carousel/expandable.tsx -------------------------------------------------------------------------------- /animata/carousel/image-carousel.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/carousel/image-carousel.stories.tsx -------------------------------------------------------------------------------- /animata/carousel/image-carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/carousel/image-carousel.tsx -------------------------------------------------------------------------------- /animata/container/animated-border-trail.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/animated-border-trail.stories.tsx -------------------------------------------------------------------------------- /animata/container/animated-border-trail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/animated-border-trail.tsx -------------------------------------------------------------------------------- /animata/container/animated-dock.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/animated-dock.stories.tsx -------------------------------------------------------------------------------- /animata/container/animated-dock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/animated-dock.tsx -------------------------------------------------------------------------------- /animata/container/cursor-tracker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/cursor-tracker.stories.tsx -------------------------------------------------------------------------------- /animata/container/cursor-tracker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/cursor-tracker.tsx -------------------------------------------------------------------------------- /animata/container/fibonacci-lines.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/fibonacci-lines.stories.tsx -------------------------------------------------------------------------------- /animata/container/fibonacci-lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/fibonacci-lines.tsx -------------------------------------------------------------------------------- /animata/container/marquee.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/marquee.stories.tsx -------------------------------------------------------------------------------- /animata/container/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/marquee.tsx -------------------------------------------------------------------------------- /animata/container/nav-tabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/nav-tabs.stories.tsx -------------------------------------------------------------------------------- /animata/container/nav-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/nav-tabs.tsx -------------------------------------------------------------------------------- /animata/container/scrolling-testimonials.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/scrolling-testimonials.stories.tsx -------------------------------------------------------------------------------- /animata/container/scrolling-testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/scrolling-testimonials.tsx -------------------------------------------------------------------------------- /animata/container/shift-tabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/shift-tabs.stories.tsx -------------------------------------------------------------------------------- /animata/container/shift-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/container/shift-tabs.tsx -------------------------------------------------------------------------------- /animata/fabs/speed-dial.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/fabs/speed-dial.stories.tsx -------------------------------------------------------------------------------- /animata/fabs/speed-dial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/fabs/speed-dial.tsx -------------------------------------------------------------------------------- /animata/feature-cards/confirmation-message.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/feature-cards/confirmation-message.stories.tsx -------------------------------------------------------------------------------- /animata/feature-cards/confirmation-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/feature-cards/confirmation-message.tsx -------------------------------------------------------------------------------- /animata/feature-cards/content-scan.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/feature-cards/content-scan.stories.tsx -------------------------------------------------------------------------------- /animata/feature-cards/content-scan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/feature-cards/content-scan.tsx -------------------------------------------------------------------------------- /animata/graphs/bar-chart.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/bar-chart.stories.tsx -------------------------------------------------------------------------------- /animata/graphs/bar-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/bar-chart.tsx -------------------------------------------------------------------------------- /animata/graphs/commit-graph.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/commit-graph.stories.tsx -------------------------------------------------------------------------------- /animata/graphs/commit-graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/commit-graph.tsx -------------------------------------------------------------------------------- /animata/graphs/donut-chart.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/donut-chart.stories.tsx -------------------------------------------------------------------------------- /animata/graphs/donut-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/donut-chart.tsx -------------------------------------------------------------------------------- /animata/graphs/gauge-chart.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/gauge-chart.stories.tsx -------------------------------------------------------------------------------- /animata/graphs/gauge-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/gauge-chart.tsx -------------------------------------------------------------------------------- /animata/graphs/progress.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/progress.stories.tsx -------------------------------------------------------------------------------- /animata/graphs/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/progress.tsx -------------------------------------------------------------------------------- /animata/graphs/ring-chart.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/ring-chart.stories.tsx -------------------------------------------------------------------------------- /animata/graphs/ring-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/graphs/ring-chart.tsx -------------------------------------------------------------------------------- /animata/hero/hero-section-text-hover.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/hero-section-text-hover.stories.tsx -------------------------------------------------------------------------------- /animata/hero/hero-section-text-hover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/hero-section-text-hover.tsx -------------------------------------------------------------------------------- /animata/hero/hero-section.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/hero-section.stories.tsx -------------------------------------------------------------------------------- /animata/hero/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/hero-section.tsx -------------------------------------------------------------------------------- /animata/hero/product-features.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/product-features.stories.tsx -------------------------------------------------------------------------------- /animata/hero/product-features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/product-features.tsx -------------------------------------------------------------------------------- /animata/hero/shape-shifter.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/shape-shifter.stories.tsx -------------------------------------------------------------------------------- /animata/hero/shape-shifter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/shape-shifter.tsx -------------------------------------------------------------------------------- /animata/hero/slack-intro.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/slack-intro.stories.tsx -------------------------------------------------------------------------------- /animata/hero/slack-intro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/hero/slack-intro.tsx -------------------------------------------------------------------------------- /animata/icon/hover-interaction.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/icon/hover-interaction.stories.tsx -------------------------------------------------------------------------------- /animata/icon/hover-interaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/icon/hover-interaction.tsx -------------------------------------------------------------------------------- /animata/icon/icon-ripple.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/icon/icon-ripple.stories.tsx -------------------------------------------------------------------------------- /animata/icon/icon-ripple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/icon/icon-ripple.tsx -------------------------------------------------------------------------------- /animata/image/disclose-image.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/disclose-image.stories.tsx -------------------------------------------------------------------------------- /animata/image/disclose-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/disclose-image.tsx -------------------------------------------------------------------------------- /animata/image/image-box-shadow.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/image-box-shadow.stories.tsx -------------------------------------------------------------------------------- /animata/image/image-box-shadow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/image-box-shadow.tsx -------------------------------------------------------------------------------- /animata/image/images-reveal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/images-reveal.stories.tsx -------------------------------------------------------------------------------- /animata/image/images-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/images-reveal.tsx -------------------------------------------------------------------------------- /animata/image/photo-booth.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/photo-booth.stories.tsx -------------------------------------------------------------------------------- /animata/image/photo-booth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/photo-booth.tsx -------------------------------------------------------------------------------- /animata/image/skew-image.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/skew-image.stories.tsx -------------------------------------------------------------------------------- /animata/image/skew-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/skew-image.tsx -------------------------------------------------------------------------------- /animata/image/tilted-cover.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/tilted-cover.stories.tsx -------------------------------------------------------------------------------- /animata/image/tilted-cover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/tilted-cover.tsx -------------------------------------------------------------------------------- /animata/image/trailing-image.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/trailing-image.stories.tsx -------------------------------------------------------------------------------- /animata/image/trailing-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/trailing-image.tsx -------------------------------------------------------------------------------- /animata/image/zoom-image.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/zoom-image.stories.tsx -------------------------------------------------------------------------------- /animata/image/zoom-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/image/zoom-image.tsx -------------------------------------------------------------------------------- /animata/list/avatar-list.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/avatar-list.stories.tsx -------------------------------------------------------------------------------- /animata/list/avatar-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/avatar-list.tsx -------------------------------------------------------------------------------- /animata/list/flipping-cards.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/flipping-cards.stories.tsx -------------------------------------------------------------------------------- /animata/list/flipping-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/flipping-cards.tsx -------------------------------------------------------------------------------- /animata/list/flower-menu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/flower-menu.stories.tsx -------------------------------------------------------------------------------- /animata/list/flower-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/flower-menu.tsx -------------------------------------------------------------------------------- /animata/list/menu-animation.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/menu-animation.stories.tsx -------------------------------------------------------------------------------- /animata/list/menu-animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/menu-animation.tsx -------------------------------------------------------------------------------- /animata/list/orbiting-items-3-d.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/orbiting-items-3-d.stories.tsx -------------------------------------------------------------------------------- /animata/list/orbiting-items-3-d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/orbiting-items-3-d.tsx -------------------------------------------------------------------------------- /animata/list/orbiting-items.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/orbiting-items.stories.tsx -------------------------------------------------------------------------------- /animata/list/orbiting-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/orbiting-items.tsx -------------------------------------------------------------------------------- /animata/list/reveal-image.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/reveal-image.stories.tsx -------------------------------------------------------------------------------- /animata/list/reveal-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/reveal-image.tsx -------------------------------------------------------------------------------- /animata/list/transaction-list.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/transaction-list.stories.tsx -------------------------------------------------------------------------------- /animata/list/transaction-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/transaction-list.tsx -------------------------------------------------------------------------------- /animata/list/transition-list.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/transition-list.stories.tsx -------------------------------------------------------------------------------- /animata/list/transition-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/list/transition-list.tsx -------------------------------------------------------------------------------- /animata/overlay/modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/overlay/modal.stories.tsx -------------------------------------------------------------------------------- /animata/overlay/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/overlay/modal.tsx -------------------------------------------------------------------------------- /animata/preloader/vertical-tiles.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/preloader/vertical-tiles.stories.tsx -------------------------------------------------------------------------------- /animata/preloader/vertical-tiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/preloader/vertical-tiles.tsx -------------------------------------------------------------------------------- /animata/progress/animatedtimeline.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/progress/animatedtimeline.stories.tsx -------------------------------------------------------------------------------- /animata/progress/animatedtimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/progress/animatedtimeline.tsx -------------------------------------------------------------------------------- /animata/progress/spinner.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/progress/spinner.stories.tsx -------------------------------------------------------------------------------- /animata/progress/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/progress/spinner.tsx -------------------------------------------------------------------------------- /animata/section/pricing.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/section/pricing.stories.tsx -------------------------------------------------------------------------------- /animata/section/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/section/pricing.tsx -------------------------------------------------------------------------------- /animata/skeleton/code.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/code.stories.tsx -------------------------------------------------------------------------------- /animata/skeleton/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/code.tsx -------------------------------------------------------------------------------- /animata/skeleton/cookie-banner.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/cookie-banner.stories.tsx -------------------------------------------------------------------------------- /animata/skeleton/cookie-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/cookie-banner.tsx -------------------------------------------------------------------------------- /animata/skeleton/list.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/list.stories.tsx -------------------------------------------------------------------------------- /animata/skeleton/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/list.tsx -------------------------------------------------------------------------------- /animata/skeleton/receipt.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/receipt.stories.tsx -------------------------------------------------------------------------------- /animata/skeleton/receipt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/receipt.tsx -------------------------------------------------------------------------------- /animata/skeleton/report.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/report.stories.tsx -------------------------------------------------------------------------------- /animata/skeleton/report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/report.tsx -------------------------------------------------------------------------------- /animata/skeleton/wide-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/wide-card.stories.tsx -------------------------------------------------------------------------------- /animata/skeleton/wide-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/skeleton/wide-card.tsx -------------------------------------------------------------------------------- /animata/text/animated-gradient-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/animated-gradient-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/animated-gradient-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/animated-gradient-text.tsx -------------------------------------------------------------------------------- /animata/text/bold-copy.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/bold-copy.stories.tsx -------------------------------------------------------------------------------- /animata/text/bold-copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/bold-copy.tsx -------------------------------------------------------------------------------- /animata/text/counter.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/counter.stories.tsx -------------------------------------------------------------------------------- /animata/text/counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/counter.tsx -------------------------------------------------------------------------------- /animata/text/cycle-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/cycle-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/cycle-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/cycle-text.tsx -------------------------------------------------------------------------------- /animata/text/double-underline.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/double-underline.stories.tsx -------------------------------------------------------------------------------- /animata/text/double-underline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/double-underline.tsx -------------------------------------------------------------------------------- /animata/text/gibberish-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/gibberish-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/gibberish-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/gibberish-text.tsx -------------------------------------------------------------------------------- /animata/text/glitch-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/glitch-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/glitch-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/glitch-text.tsx -------------------------------------------------------------------------------- /animata/text/jitter-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/jitter-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/jitter-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/jitter-text.tsx -------------------------------------------------------------------------------- /animata/text/jumping-text-instagram.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/jumping-text-instagram.stories.tsx -------------------------------------------------------------------------------- /animata/text/jumping-text-instagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/jumping-text-instagram.tsx -------------------------------------------------------------------------------- /animata/text/mask-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/mask-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/mask-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/mask-text.tsx -------------------------------------------------------------------------------- /animata/text/mirror-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/mirror-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/mirror-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/mirror-text.tsx -------------------------------------------------------------------------------- /animata/text/scroll-reveal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/scroll-reveal.stories.tsx -------------------------------------------------------------------------------- /animata/text/scroll-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/scroll-reveal.tsx -------------------------------------------------------------------------------- /animata/text/split-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/split-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/split-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/split-text.tsx -------------------------------------------------------------------------------- /animata/text/staggered-letter.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/staggered-letter.stories.tsx -------------------------------------------------------------------------------- /animata/text/staggered-letter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/staggered-letter.tsx -------------------------------------------------------------------------------- /animata/text/swap-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/swap-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/swap-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/swap-text.tsx -------------------------------------------------------------------------------- /animata/text/text-border-animation.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/text-border-animation.stories.tsx -------------------------------------------------------------------------------- /animata/text/text-border-animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/text-border-animation.tsx -------------------------------------------------------------------------------- /animata/text/text-explode-imessage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/text-explode-imessage.stories.tsx -------------------------------------------------------------------------------- /animata/text/text-explode-imessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/text-explode-imessage.tsx -------------------------------------------------------------------------------- /animata/text/text-flip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/text-flip.stories.tsx -------------------------------------------------------------------------------- /animata/text/text-flip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/text-flip.tsx -------------------------------------------------------------------------------- /animata/text/ticker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/ticker.stories.tsx -------------------------------------------------------------------------------- /animata/text/ticker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/ticker.tsx -------------------------------------------------------------------------------- /animata/text/typing-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/typing-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/typing-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/typing-text.tsx -------------------------------------------------------------------------------- /animata/text/underline-hover-text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/underline-hover-text.stories.tsx -------------------------------------------------------------------------------- /animata/text/underline-hover-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/underline-hover-text.tsx -------------------------------------------------------------------------------- /animata/text/wave-reveal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/wave-reveal.stories.tsx -------------------------------------------------------------------------------- /animata/text/wave-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/text/wave-reveal.tsx -------------------------------------------------------------------------------- /animata/widget/alarm-clock.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/alarm-clock.stories.tsx -------------------------------------------------------------------------------- /animata/widget/alarm-clock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/alarm-clock.tsx -------------------------------------------------------------------------------- /animata/widget/battery-level.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/battery-level.stories.tsx -------------------------------------------------------------------------------- /animata/widget/battery-level.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/battery-level.tsx -------------------------------------------------------------------------------- /animata/widget/battery.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/battery.stories.tsx -------------------------------------------------------------------------------- /animata/widget/battery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/battery.tsx -------------------------------------------------------------------------------- /animata/widget/calendar-event.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/calendar-event.stories.tsx -------------------------------------------------------------------------------- /animata/widget/calendar-event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/calendar-event.tsx -------------------------------------------------------------------------------- /animata/widget/calendar-widget.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/calendar-widget.stories.tsx -------------------------------------------------------------------------------- /animata/widget/calendar-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/calendar-widget.tsx -------------------------------------------------------------------------------- /animata/widget/calorie-counter.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/calorie-counter.stories.tsx -------------------------------------------------------------------------------- /animata/widget/calorie-counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/calorie-counter.tsx -------------------------------------------------------------------------------- /animata/widget/clock-with-photo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/clock-with-photo.stories.tsx -------------------------------------------------------------------------------- /animata/widget/clock-with-photo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/clock-with-photo.tsx -------------------------------------------------------------------------------- /animata/widget/cycling.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/cycling.stories.tsx -------------------------------------------------------------------------------- /animata/widget/cycling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/cycling.tsx -------------------------------------------------------------------------------- /animata/widget/delivery-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/delivery-card.stories.tsx -------------------------------------------------------------------------------- /animata/widget/delivery-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/delivery-card.tsx -------------------------------------------------------------------------------- /animata/widget/direction-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/direction-card.stories.tsx -------------------------------------------------------------------------------- /animata/widget/direction-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/direction-card.tsx -------------------------------------------------------------------------------- /animata/widget/expense-tracker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/expense-tracker.stories.tsx -------------------------------------------------------------------------------- /animata/widget/expense-tracker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/expense-tracker.tsx -------------------------------------------------------------------------------- /animata/widget/flight-widget.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/flight-widget.stories.tsx -------------------------------------------------------------------------------- /animata/widget/flight-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/flight-widget.tsx -------------------------------------------------------------------------------- /animata/widget/fund-widget.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/fund-widget.stories.tsx -------------------------------------------------------------------------------- /animata/widget/fund-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/fund-widget.tsx -------------------------------------------------------------------------------- /animata/widget/live-score.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/live-score.stories.tsx -------------------------------------------------------------------------------- /animata/widget/live-score.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/live-score.tsx -------------------------------------------------------------------------------- /animata/widget/mobile-detail.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/mobile-detail.stories.tsx -------------------------------------------------------------------------------- /animata/widget/mobile-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/mobile-detail.tsx -------------------------------------------------------------------------------- /animata/widget/music-stack-interaction.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/music-stack-interaction.stories.tsx -------------------------------------------------------------------------------- /animata/widget/music-stack-interaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/music-stack-interaction.tsx -------------------------------------------------------------------------------- /animata/widget/music-widget.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/music-widget.stories.tsx -------------------------------------------------------------------------------- /animata/widget/music-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/music-widget.tsx -------------------------------------------------------------------------------- /animata/widget/notes.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/notes.stories.tsx -------------------------------------------------------------------------------- /animata/widget/notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/notes.tsx -------------------------------------------------------------------------------- /animata/widget/profile.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/profile.stories.tsx -------------------------------------------------------------------------------- /animata/widget/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/profile.tsx -------------------------------------------------------------------------------- /animata/widget/reminder-widget.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/reminder-widget.stories.tsx -------------------------------------------------------------------------------- /animata/widget/reminder-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/reminder-widget.tsx -------------------------------------------------------------------------------- /animata/widget/reminder.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/reminder.stories.tsx -------------------------------------------------------------------------------- /animata/widget/reminder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/reminder.tsx -------------------------------------------------------------------------------- /animata/widget/score-board.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/score-board.stories.tsx -------------------------------------------------------------------------------- /animata/widget/score-board.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/score-board.tsx -------------------------------------------------------------------------------- /animata/widget/security-alert.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/security-alert.stories.tsx -------------------------------------------------------------------------------- /animata/widget/security-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/security-alert.tsx -------------------------------------------------------------------------------- /animata/widget/shopping-list.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/shopping-list.stories.tsx -------------------------------------------------------------------------------- /animata/widget/shopping-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/shopping-list.tsx -------------------------------------------------------------------------------- /animata/widget/sleep-tracker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/sleep-tracker.stories.tsx -------------------------------------------------------------------------------- /animata/widget/sleep-tracker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/sleep-tracker.tsx -------------------------------------------------------------------------------- /animata/widget/storage-status.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/storage-status.stories.tsx -------------------------------------------------------------------------------- /animata/widget/storage-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/storage-status.tsx -------------------------------------------------------------------------------- /animata/widget/storage-widget.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/storage-widget.stories.tsx -------------------------------------------------------------------------------- /animata/widget/storage-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/storage-widget.tsx -------------------------------------------------------------------------------- /animata/widget/study-timer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/study-timer.stories.tsx -------------------------------------------------------------------------------- /animata/widget/study-timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/study-timer.tsx -------------------------------------------------------------------------------- /animata/widget/team-clock.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/team-clock.stories.tsx -------------------------------------------------------------------------------- /animata/widget/team-clock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/team-clock.tsx -------------------------------------------------------------------------------- /animata/widget/video-chat.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/video-chat.stories.tsx -------------------------------------------------------------------------------- /animata/widget/video-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/video-chat.tsx -------------------------------------------------------------------------------- /animata/widget/vpn-widget.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/vpn-widget.stories.tsx -------------------------------------------------------------------------------- /animata/widget/vpn-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/vpn-widget.tsx -------------------------------------------------------------------------------- /animata/widget/water-tracker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/water-tracker.stories.tsx -------------------------------------------------------------------------------- /animata/widget/water-tracker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/water-tracker.tsx -------------------------------------------------------------------------------- /animata/widget/weather-card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/weather-card.stories.tsx -------------------------------------------------------------------------------- /animata/widget/weather-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/weather-card.tsx -------------------------------------------------------------------------------- /animata/widget/weekly-progress.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/weekly-progress.stories.tsx -------------------------------------------------------------------------------- /animata/widget/weekly-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/animata/widget/weekly-progress.tsx -------------------------------------------------------------------------------- /app/_landing/call-to-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/call-to-action.tsx -------------------------------------------------------------------------------- /app/_landing/faq-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/faq-section.tsx -------------------------------------------------------------------------------- /app/_landing/grid-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/grid-view.tsx -------------------------------------------------------------------------------- /app/_landing/hero-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/hero-title.tsx -------------------------------------------------------------------------------- /app/_landing/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/hero.tsx -------------------------------------------------------------------------------- /app/_landing/highlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/highlight.tsx -------------------------------------------------------------------------------- /app/_landing/mode-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/mode-switcher.tsx -------------------------------------------------------------------------------- /app/_landing/newsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/newsletter.tsx -------------------------------------------------------------------------------- /app/_landing/section-one.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/section-one.tsx -------------------------------------------------------------------------------- /app/_landing/section-two.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/section-two.tsx -------------------------------------------------------------------------------- /app/_landing/skeleton-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/skeleton-section.tsx -------------------------------------------------------------------------------- /app/_landing/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/testimonials.tsx -------------------------------------------------------------------------------- /app/_landing/thunder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/thunder.tsx -------------------------------------------------------------------------------- /app/_landing/widget-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/_landing/widget-section.tsx -------------------------------------------------------------------------------- /app/blog/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/blog/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /app/blog/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/blog/layout.tsx -------------------------------------------------------------------------------- /app/credits/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/credits/page.tsx -------------------------------------------------------------------------------- /app/docs/[[...slug]]/nav-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/docs/[[...slug]]/nav-menu.tsx -------------------------------------------------------------------------------- /app/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/docs/layout.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/providers.tsx -------------------------------------------------------------------------------- /app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/app/sitemap.ts -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/commitlint.config.cjs -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components.json -------------------------------------------------------------------------------- /components/ads.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ads.tsx -------------------------------------------------------------------------------- /components/announcement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/announcement.tsx -------------------------------------------------------------------------------- /components/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/callout.tsx -------------------------------------------------------------------------------- /components/code-block-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/code-block-wrapper.tsx -------------------------------------------------------------------------------- /components/command-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/command-menu.tsx -------------------------------------------------------------------------------- /components/component-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/component-card.tsx -------------------------------------------------------------------------------- /components/component-example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/component-example.tsx -------------------------------------------------------------------------------- /components/component-link-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/component-link-wrapper.tsx -------------------------------------------------------------------------------- /components/component-list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/component-list-item.tsx -------------------------------------------------------------------------------- /components/component-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/component-preview.tsx -------------------------------------------------------------------------------- /components/component-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/component-source.tsx -------------------------------------------------------------------------------- /components/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/copy-button.tsx -------------------------------------------------------------------------------- /components/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/drawer.tsx -------------------------------------------------------------------------------- /components/framework-docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/framework-docs.tsx -------------------------------------------------------------------------------- /components/header-dock-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/header-dock-item.tsx -------------------------------------------------------------------------------- /components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/icons.tsx -------------------------------------------------------------------------------- /components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/main-nav.tsx -------------------------------------------------------------------------------- /components/mdx-base-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/mdx-base-components.tsx -------------------------------------------------------------------------------- /components/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/mdx-components.tsx -------------------------------------------------------------------------------- /components/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/mobile-nav.tsx -------------------------------------------------------------------------------- /components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/mode-toggle.tsx -------------------------------------------------------------------------------- /components/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/page-header.tsx -------------------------------------------------------------------------------- /components/pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/pager.tsx -------------------------------------------------------------------------------- /components/preview-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/preview-container.tsx -------------------------------------------------------------------------------- /components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/providers.tsx -------------------------------------------------------------------------------- /components/reload-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/reload-button.tsx -------------------------------------------------------------------------------- /components/remount-on-mouse-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/remount-on-mouse-in.tsx -------------------------------------------------------------------------------- /components/sidebar-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/sidebar-nav.tsx -------------------------------------------------------------------------------- /components/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/site-footer.tsx -------------------------------------------------------------------------------- /components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/site-header.tsx -------------------------------------------------------------------------------- /components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /components/toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/toc.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /config/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/config/blog.ts -------------------------------------------------------------------------------- /config/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/config/docs.ts -------------------------------------------------------------------------------- /config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/config/index.ts -------------------------------------------------------------------------------- /config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/config/site.ts -------------------------------------------------------------------------------- /content/blog/hacktoberfest-2024.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/blog/hacktoberfest-2024.mdx -------------------------------------------------------------------------------- /content/blog/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/blog/index.mdx -------------------------------------------------------------------------------- /content/docs/accordion/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/accordion/faq.mdx -------------------------------------------------------------------------------- /content/docs/background/animated-beam.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/background/animated-beam.mdx -------------------------------------------------------------------------------- /content/docs/background/blurry-blob.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/background/blurry-blob.mdx -------------------------------------------------------------------------------- /content/docs/background/diagonal-lines.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/background/diagonal-lines.mdx -------------------------------------------------------------------------------- /content/docs/background/dot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/background/dot.mdx -------------------------------------------------------------------------------- /content/docs/background/grid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/background/grid.mdx -------------------------------------------------------------------------------- /content/docs/background/interactive-grid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/background/interactive-grid.mdx -------------------------------------------------------------------------------- /content/docs/background/moving-gradient.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/background/moving-gradient.mdx -------------------------------------------------------------------------------- /content/docs/background/zigzag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/background/zigzag.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/eight.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/eight.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/eleven.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/eleven.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/five.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/five.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/four.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/four.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/gradient.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/gradient.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/index.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/nine.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/nine.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/seven.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/seven.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/six.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/six.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/ten.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/ten.mdx -------------------------------------------------------------------------------- /content/docs/bento-grid/three.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/bento-grid/three.mdx -------------------------------------------------------------------------------- /content/docs/button/ai-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/ai-button.mdx -------------------------------------------------------------------------------- /content/docs/button/algolia-blue-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/algolia-blue-button.mdx -------------------------------------------------------------------------------- /content/docs/button/algolia-white-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/algolia-white-button.mdx -------------------------------------------------------------------------------- /content/docs/button/animated-follow-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/animated-follow-button.mdx -------------------------------------------------------------------------------- /content/docs/button/duolingo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/duolingo.mdx -------------------------------------------------------------------------------- /content/docs/button/external-link-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/external-link-button.mdx -------------------------------------------------------------------------------- /content/docs/button/get-started-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/get-started-button.mdx -------------------------------------------------------------------------------- /content/docs/button/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/index.mdx -------------------------------------------------------------------------------- /content/docs/button/ripple-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/ripple-button.mdx -------------------------------------------------------------------------------- /content/docs/button/shining-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/shining-button.mdx -------------------------------------------------------------------------------- /content/docs/button/slide-arrow-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/slide-arrow-button.mdx -------------------------------------------------------------------------------- /content/docs/button/status-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/status-button.mdx -------------------------------------------------------------------------------- /content/docs/button/swipe-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/swipe-button.mdx -------------------------------------------------------------------------------- /content/docs/button/toggle-switch.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/toggle-switch.mdx -------------------------------------------------------------------------------- /content/docs/button/work-button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/button/work-button.mdx -------------------------------------------------------------------------------- /content/docs/card/blur-stack-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/blur-stack-card.mdx -------------------------------------------------------------------------------- /content/docs/card/card-comment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/card-comment.mdx -------------------------------------------------------------------------------- /content/docs/card/card-spread.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/card-spread.mdx -------------------------------------------------------------------------------- /content/docs/card/case-study-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/case-study-card.mdx -------------------------------------------------------------------------------- /content/docs/card/comment-reply-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/comment-reply-card.mdx -------------------------------------------------------------------------------- /content/docs/card/email-feature-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/email-feature-card.mdx -------------------------------------------------------------------------------- /content/docs/card/flip-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/flip-card.mdx -------------------------------------------------------------------------------- /content/docs/card/fluid-tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/fluid-tabs.mdx -------------------------------------------------------------------------------- /content/docs/card/github-card-shiny.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/github-card-shiny.mdx -------------------------------------------------------------------------------- /content/docs/card/github-card-skew.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/github-card-skew.mdx -------------------------------------------------------------------------------- /content/docs/card/glowing-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/glowing-card.mdx -------------------------------------------------------------------------------- /content/docs/card/integration-pills.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/integration-pills.mdx -------------------------------------------------------------------------------- /content/docs/card/led-board.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/led-board.mdx -------------------------------------------------------------------------------- /content/docs/card/notice-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/notice-card.mdx -------------------------------------------------------------------------------- /content/docs/card/notification-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/notification-card.mdx -------------------------------------------------------------------------------- /content/docs/card/notify-user-info.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/notify-user-info.mdx -------------------------------------------------------------------------------- /content/docs/card/reminder-scheduler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/reminder-scheduler.mdx -------------------------------------------------------------------------------- /content/docs/card/score-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/score-card.mdx -------------------------------------------------------------------------------- /content/docs/card/staggered-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/staggered-card.mdx -------------------------------------------------------------------------------- /content/docs/card/subscribe-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/subscribe-card.mdx -------------------------------------------------------------------------------- /content/docs/card/survey-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/survey-card.mdx -------------------------------------------------------------------------------- /content/docs/card/swap-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/swap-card.mdx -------------------------------------------------------------------------------- /content/docs/card/swap-text-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/swap-text-card.mdx -------------------------------------------------------------------------------- /content/docs/card/tilted-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/tilted-card.mdx -------------------------------------------------------------------------------- /content/docs/card/webhooks-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/card/webhooks-card.mdx -------------------------------------------------------------------------------- /content/docs/carousel/expandable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/carousel/expandable.mdx -------------------------------------------------------------------------------- /content/docs/carousel/image-carousel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/carousel/image-carousel.mdx -------------------------------------------------------------------------------- /content/docs/changelog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/changelog.mdx -------------------------------------------------------------------------------- /content/docs/container/animated-border-trail.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/container/animated-border-trail.mdx -------------------------------------------------------------------------------- /content/docs/container/animated-dock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/container/animated-dock.mdx -------------------------------------------------------------------------------- /content/docs/container/cursor-tracker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/container/cursor-tracker.mdx -------------------------------------------------------------------------------- /content/docs/container/fibonacci-lines.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/container/fibonacci-lines.mdx -------------------------------------------------------------------------------- /content/docs/container/marquee.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/container/marquee.mdx -------------------------------------------------------------------------------- /content/docs/container/nav-tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/container/nav-tabs.mdx -------------------------------------------------------------------------------- /content/docs/container/scrolling-testimonials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/container/scrolling-testimonials.mdx -------------------------------------------------------------------------------- /content/docs/container/shift-tabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/container/shift-tabs.mdx -------------------------------------------------------------------------------- /content/docs/contributing/best-practices.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/contributing/best-practices.mdx -------------------------------------------------------------------------------- /content/docs/contributing/components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/contributing/components.mdx -------------------------------------------------------------------------------- /content/docs/contributing/folder-structure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/contributing/folder-structure.mdx -------------------------------------------------------------------------------- /content/docs/contributing/guidelines.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/contributing/guidelines.mdx -------------------------------------------------------------------------------- /content/docs/contributing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/contributing/index.mdx -------------------------------------------------------------------------------- /content/docs/contributing/running-locally.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/contributing/running-locally.mdx -------------------------------------------------------------------------------- /content/docs/fabs/speed-dial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/fabs/speed-dial.mdx -------------------------------------------------------------------------------- /content/docs/feature-cards/confirmation-message.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/feature-cards/confirmation-message.mdx -------------------------------------------------------------------------------- /content/docs/feature-cards/content-scan.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/feature-cards/content-scan.mdx -------------------------------------------------------------------------------- /content/docs/graphs/bar-chart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/graphs/bar-chart.mdx -------------------------------------------------------------------------------- /content/docs/graphs/commit-graph.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/graphs/commit-graph.mdx -------------------------------------------------------------------------------- /content/docs/graphs/donut-chart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/graphs/donut-chart.mdx -------------------------------------------------------------------------------- /content/docs/graphs/gauge-chart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/graphs/gauge-chart.mdx -------------------------------------------------------------------------------- /content/docs/graphs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/graphs/index.mdx -------------------------------------------------------------------------------- /content/docs/graphs/progress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/graphs/progress.mdx -------------------------------------------------------------------------------- /content/docs/graphs/ring-chart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/graphs/ring-chart.mdx -------------------------------------------------------------------------------- /content/docs/hero/hero-section-text-hover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/hero/hero-section-text-hover.mdx -------------------------------------------------------------------------------- /content/docs/hero/hero-section.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/hero/hero-section.mdx -------------------------------------------------------------------------------- /content/docs/hero/product-features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/hero/product-features.mdx -------------------------------------------------------------------------------- /content/docs/hero/shape-shifter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/hero/shape-shifter.mdx -------------------------------------------------------------------------------- /content/docs/hero/slack-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/hero/slack-intro.mdx -------------------------------------------------------------------------------- /content/docs/icon/hover-interaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/icon/hover-interaction.mdx -------------------------------------------------------------------------------- /content/docs/icon/icon-ripple.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/icon/icon-ripple.mdx -------------------------------------------------------------------------------- /content/docs/image/disclose-image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/image/disclose-image.mdx -------------------------------------------------------------------------------- /content/docs/image/image-box-shadow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/image/image-box-shadow.mdx -------------------------------------------------------------------------------- /content/docs/image/images-reveal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/image/images-reveal.mdx -------------------------------------------------------------------------------- /content/docs/image/photo-booth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/image/photo-booth.mdx -------------------------------------------------------------------------------- /content/docs/image/skew-image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/image/skew-image.mdx -------------------------------------------------------------------------------- /content/docs/image/tilted-cover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/image/tilted-cover.mdx -------------------------------------------------------------------------------- /content/docs/image/trailing-image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/image/trailing-image.mdx -------------------------------------------------------------------------------- /content/docs/image/zoom-image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/image/zoom-image.mdx -------------------------------------------------------------------------------- /content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/index.mdx -------------------------------------------------------------------------------- /content/docs/list/avatar-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/list/avatar-list.mdx -------------------------------------------------------------------------------- /content/docs/list/flipping-cards.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/list/flipping-cards.mdx -------------------------------------------------------------------------------- /content/docs/list/flower-menu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/list/flower-menu.mdx -------------------------------------------------------------------------------- /content/docs/list/menu-animation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/list/menu-animation.mdx -------------------------------------------------------------------------------- /content/docs/list/orbiting-items-3-d.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/list/orbiting-items-3-d.mdx -------------------------------------------------------------------------------- /content/docs/list/orbiting-items.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/list/orbiting-items.mdx -------------------------------------------------------------------------------- /content/docs/list/reveal-image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/list/reveal-image.mdx -------------------------------------------------------------------------------- /content/docs/list/transaction-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/list/transaction-list.mdx -------------------------------------------------------------------------------- /content/docs/list/transition-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/list/transition-list.mdx -------------------------------------------------------------------------------- /content/docs/overlay/modal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/overlay/modal.mdx -------------------------------------------------------------------------------- /content/docs/preloader/vertical-tiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/preloader/vertical-tiles.mdx -------------------------------------------------------------------------------- /content/docs/progress/animatedtimeline.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/progress/animatedtimeline.mdx -------------------------------------------------------------------------------- /content/docs/progress/spinner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/progress/spinner.mdx -------------------------------------------------------------------------------- /content/docs/section/pricing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/section/pricing.mdx -------------------------------------------------------------------------------- /content/docs/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/setup.mdx -------------------------------------------------------------------------------- /content/docs/skeleton/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/skeleton/index.mdx -------------------------------------------------------------------------------- /content/docs/text/animated-gradient-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/animated-gradient-text.mdx -------------------------------------------------------------------------------- /content/docs/text/bold-copy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/bold-copy.mdx -------------------------------------------------------------------------------- /content/docs/text/counter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/counter.mdx -------------------------------------------------------------------------------- /content/docs/text/cycle-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/cycle-text.mdx -------------------------------------------------------------------------------- /content/docs/text/double-underline.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/double-underline.mdx -------------------------------------------------------------------------------- /content/docs/text/gibberish-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/gibberish-text.mdx -------------------------------------------------------------------------------- /content/docs/text/glitch-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/glitch-text.mdx -------------------------------------------------------------------------------- /content/docs/text/jitter-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/jitter-text.mdx -------------------------------------------------------------------------------- /content/docs/text/jumping-text-instagram.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/jumping-text-instagram.mdx -------------------------------------------------------------------------------- /content/docs/text/mask-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/mask-text.mdx -------------------------------------------------------------------------------- /content/docs/text/mirror-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/mirror-text.mdx -------------------------------------------------------------------------------- /content/docs/text/scroll-reveal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/scroll-reveal.mdx -------------------------------------------------------------------------------- /content/docs/text/split-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/split-text.mdx -------------------------------------------------------------------------------- /content/docs/text/staggered-letter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/staggered-letter.mdx -------------------------------------------------------------------------------- /content/docs/text/swap-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/swap-text.mdx -------------------------------------------------------------------------------- /content/docs/text/text-border-animation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/text-border-animation.mdx -------------------------------------------------------------------------------- /content/docs/text/text-explode-imessage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/text-explode-imessage.mdx -------------------------------------------------------------------------------- /content/docs/text/text-flip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/text-flip.mdx -------------------------------------------------------------------------------- /content/docs/text/ticker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/ticker.mdx -------------------------------------------------------------------------------- /content/docs/text/typing-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/typing-text.mdx -------------------------------------------------------------------------------- /content/docs/text/underline-hover-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/underline-hover-text.mdx -------------------------------------------------------------------------------- /content/docs/text/wave-reveal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/text/wave-reveal.mdx -------------------------------------------------------------------------------- /content/docs/widget/alarm-clock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/alarm-clock.mdx -------------------------------------------------------------------------------- /content/docs/widget/battery-level.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/battery-level.mdx -------------------------------------------------------------------------------- /content/docs/widget/battery.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/battery.mdx -------------------------------------------------------------------------------- /content/docs/widget/calendar-event.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/calendar-event.mdx -------------------------------------------------------------------------------- /content/docs/widget/calendar-widget.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/calendar-widget.mdx -------------------------------------------------------------------------------- /content/docs/widget/calorie-counter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/calorie-counter.mdx -------------------------------------------------------------------------------- /content/docs/widget/clock-with-photo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/clock-with-photo.mdx -------------------------------------------------------------------------------- /content/docs/widget/cycling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/cycling.mdx -------------------------------------------------------------------------------- /content/docs/widget/delivery-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/delivery-card.mdx -------------------------------------------------------------------------------- /content/docs/widget/direction-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/direction-card.mdx -------------------------------------------------------------------------------- /content/docs/widget/expense-tracker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/expense-tracker.mdx -------------------------------------------------------------------------------- /content/docs/widget/flight-widget.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/flight-widget.mdx -------------------------------------------------------------------------------- /content/docs/widget/fund-widget.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/fund-widget.mdx -------------------------------------------------------------------------------- /content/docs/widget/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/index.mdx -------------------------------------------------------------------------------- /content/docs/widget/live-score.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/live-score.mdx -------------------------------------------------------------------------------- /content/docs/widget/mobile-detail.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/mobile-detail.mdx -------------------------------------------------------------------------------- /content/docs/widget/music-stack-interaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/music-stack-interaction.mdx -------------------------------------------------------------------------------- /content/docs/widget/music-widget.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/music-widget.mdx -------------------------------------------------------------------------------- /content/docs/widget/notes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/notes.mdx -------------------------------------------------------------------------------- /content/docs/widget/profile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/profile.mdx -------------------------------------------------------------------------------- /content/docs/widget/reminder-widget.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/reminder-widget.mdx -------------------------------------------------------------------------------- /content/docs/widget/reminder.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/reminder.mdx -------------------------------------------------------------------------------- /content/docs/widget/score-board.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/score-board.mdx -------------------------------------------------------------------------------- /content/docs/widget/security-alert.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/security-alert.mdx -------------------------------------------------------------------------------- /content/docs/widget/shopping-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/shopping-list.mdx -------------------------------------------------------------------------------- /content/docs/widget/sleep-tracker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/sleep-tracker.mdx -------------------------------------------------------------------------------- /content/docs/widget/storage-status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/storage-status.mdx -------------------------------------------------------------------------------- /content/docs/widget/storage-widget.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/storage-widget.mdx -------------------------------------------------------------------------------- /content/docs/widget/study-timer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/study-timer.mdx -------------------------------------------------------------------------------- /content/docs/widget/team-clock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/team-clock.mdx -------------------------------------------------------------------------------- /content/docs/widget/video-chat.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/video-chat.mdx -------------------------------------------------------------------------------- /content/docs/widget/vpn-widget.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/vpn-widget.mdx -------------------------------------------------------------------------------- /content/docs/widget/water-tracker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/water-tracker.mdx -------------------------------------------------------------------------------- /content/docs/widget/weather-card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/weather-card.mdx -------------------------------------------------------------------------------- /content/docs/widget/weekly-progress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/content/docs/widget/weekly-progress.mdx -------------------------------------------------------------------------------- /contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/contentlayer.config.ts -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/global.d.ts -------------------------------------------------------------------------------- /hooks/use-lock-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/hooks/use-lock-body.ts -------------------------------------------------------------------------------- /hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/hooks/use-media-query.ts -------------------------------------------------------------------------------- /hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/hooks/use-mounted.ts -------------------------------------------------------------------------------- /hooks/use-mouse-position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/hooks/use-mouse-position.ts -------------------------------------------------------------------------------- /hooks/use-mutation-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/hooks/use-mutation-observer.ts -------------------------------------------------------------------------------- /hooks/use-newsletter-subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/hooks/use-newsletter-subscription.ts -------------------------------------------------------------------------------- /lib/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/lib/events.ts -------------------------------------------------------------------------------- /lib/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/lib/toc.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/A.png -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/bg-hills.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/bg-hills.jpg -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/circle.svg -------------------------------------------------------------------------------- /public/codse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/codse.webp -------------------------------------------------------------------------------- /public/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/cursor.png -------------------------------------------------------------------------------- /public/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/dog.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon512_maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/icon512_maskable.png -------------------------------------------------------------------------------- /public/icon512_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/icon512_rounded.png -------------------------------------------------------------------------------- /public/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/install.png -------------------------------------------------------------------------------- /public/jumping-man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/jumping-man.png -------------------------------------------------------------------------------- /public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/mstile-144x144.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/mstile-310x150.png -------------------------------------------------------------------------------- /public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/mstile-310x310.png -------------------------------------------------------------------------------- /public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/mstile-70x70.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/og.png -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/widget/music.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/public/widget/music.jpg -------------------------------------------------------------------------------- /scripts/create-new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/scripts/create-new.js -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/mdx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/styles/mdx.css -------------------------------------------------------------------------------- /styles/storybook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/styles/storybook.css -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /templates/component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/templates/component -------------------------------------------------------------------------------- /templates/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/templates/doc -------------------------------------------------------------------------------- /templates/story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/templates/story -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/types/index.ts -------------------------------------------------------------------------------- /types/unist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/types/unist.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codse/animata/HEAD/yarn.lock --------------------------------------------------------------------------------