├── .eslintrc ├── .github └── workflows │ ├── deploy-dev.yml │ ├── deploy.yml │ ├── issue-to-project.yml │ ├── pr-check.yml │ └── refresh-coda-cache.yml ├── .gitignore ├── .prettierrc ├── .storybook ├── main.ts └── preview.tsx ├── LICENSE ├── README.md ├── app ├── assets │ ├── Baginski.jpeg │ ├── Lons.jpg │ ├── icons │ │ ├── aisafety.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up-right.svg │ │ ├── arrow.svg │ │ ├── book-circle.svg │ │ ├── book.svg │ │ ├── bot-small.svg │ │ ├── bot.svg │ │ ├── bottom-eclipse.svg │ │ ├── box-arrow.svg │ │ ├── briefcase.svg │ │ ├── buoy.svg │ │ ├── carrot - large.svg │ │ ├── chatbot.svg │ │ ├── chevron-right.svg │ │ ├── clipboard.svg │ │ ├── code.svg │ │ ├── dark-light.svg │ │ ├── discord.svg │ │ ├── dislike.svg │ │ ├── eclipse-book.svg │ │ ├── eclipse-individual.svg │ │ ├── eclipse-team.svg │ │ ├── edit.svg │ │ ├── ellipsis.svg │ │ ├── exclamation.svg │ │ ├── flag.svg │ │ ├── followup.svg │ │ ├── get-involved-mobile.svg │ │ ├── goverment_building.svg │ │ ├── group.svg │ │ ├── groupTop-ecplise.svg │ │ ├── hand.svg │ │ ├── heart.svg │ │ ├── hide.svg │ │ ├── intro-mobile.svg │ │ ├── like.svg │ │ ├── link-out.svg │ │ ├── link.svg │ │ ├── list - large.svg │ │ ├── magnifying-glass.svg │ │ ├── magnifying-large.svg │ │ ├── magnifying.svg │ │ ├── megaphone.svg │ │ ├── microscope.svg │ │ ├── open-book.svg │ │ ├── paper.svg │ │ ├── pencil.svg │ │ ├── people.svg │ │ ├── people_help_section.svg │ │ ├── person-in-circle.svg │ │ ├── person.svg │ │ ├── piggy_bank.svg │ │ ├── plane-send.svg │ │ ├── play.svg │ │ ├── puzzle_pieces.svg │ │ ├── question-mark.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── share.svg │ │ ├── social-copy.svg │ │ ├── social-email.svg │ │ ├── social-facebook.svg │ │ ├── social-linkedin.svg │ │ ├── social-reddit.svg │ │ ├── social-x.svg │ │ ├── speaker.svg │ │ ├── stamp.svg │ │ ├── stampy-large.svg │ │ ├── stampy-small.svg │ │ ├── stampy.svg │ │ ├── tag.svg │ │ ├── thumb-down-large.svg │ │ ├── thumb-down.svg │ │ ├── thumb-up-large.svg │ │ ├── thumb-up.svg │ │ ├── undo.svg │ │ ├── users.svg │ │ ├── x-large.svg │ │ └── x.svg │ ├── stampy-logo-min.svg │ ├── stampy-logo.svg │ └── video_thumbnail.png ├── components │ ├── Article │ │ ├── Contents.tsx │ │ ├── KeepGoing │ │ │ ├── index.tsx │ │ │ └── keepGoing.module.css │ │ ├── article.css │ │ └── index.tsx │ ├── ArticleCarousel │ │ ├── article-carousel.css │ │ └── index.tsx │ ├── ArticlesDropdown │ │ ├── dropdown.css │ │ └── index.tsx │ ├── ArticlesNav │ │ ├── ArticleNav.tsx │ │ ├── ArticleNavManualList.tsx │ │ └── articlenav.css │ ├── Button │ │ ├── button.css │ │ └── index.tsx │ ├── Card │ │ ├── card.css │ │ └── index.tsx │ ├── CardSmall │ │ ├── cardsmall.css │ │ └── index.tsx │ ├── CategoriesNav │ │ ├── CategoriesNav.tsx │ │ ├── Page.tsx │ │ └── categoriesnav.css │ ├── Chatbot │ │ ├── ChatEntry.tsx │ │ ├── chat_entry.css │ │ ├── index.tsx │ │ └── widgit.css │ ├── ContentBox │ │ ├── box.css │ │ └── index.tsx │ ├── DropDown │ │ ├── dropdown.css │ │ └── index.tsx │ ├── Error │ │ ├── error.module.css │ │ └── index.tsx │ ├── Feedback │ │ ├── Form.tsx │ │ ├── feedback.css │ │ └── index.tsx │ ├── Footer │ │ ├── footer.css │ │ └── index.tsx │ ├── GlobalBanners │ │ ├── global-banners.css │ │ └── index.tsx │ ├── Grid │ │ ├── grid.css │ │ └── index.tsx │ ├── HelpGrid │ │ └── index.tsx │ ├── HowCanIHelp │ │ ├── Base.tsx │ │ ├── HelpItem.tsx │ │ ├── HelpMethods.tsx │ │ └── howcanihelp.css │ ├── Input │ │ ├── index.tsx │ │ └── input.css │ ├── LinkCard │ │ ├── index.tsx │ │ └── linkcard.css │ ├── MediaCarousel │ │ ├── index.tsx │ │ └── mediacarousel.css │ ├── Menu │ │ ├── index.tsx │ │ └── menuItem.css │ ├── Nav │ │ ├── Mobile │ │ │ ├── index.tsx │ │ │ └── navMobile.css │ │ ├── index.tsx │ │ └── nav.css │ ├── Page.tsx │ ├── SearchInput │ │ ├── Input.tsx │ │ └── input.css │ ├── SearchResults │ │ ├── Dropdown.tsx │ │ └── dropdown.css │ ├── Table │ │ ├── index.tsx │ │ └── listTable.module.css │ ├── Testimonial │ │ ├── index.tsx │ │ └── testimonial.css │ ├── ThemeToggle │ │ ├── index.tsx │ │ └── themeToggle.css │ ├── VideoThumbnail │ │ └── videothumbnail.tsx │ ├── copyLink.tsx │ ├── dialog.tsx │ ├── icons-generated │ │ ├── Aisafety.tsx │ │ ├── Arrow.tsx │ │ ├── ArrowRight.tsx │ │ ├── ArrowUpRight.tsx │ │ ├── Book.tsx │ │ ├── BookCircle.tsx │ │ ├── Bot.tsx │ │ ├── BotSmall.tsx │ │ ├── BottomEclipse.tsx │ │ ├── BoxArrow.tsx │ │ ├── Briefcase.tsx │ │ ├── Buoy.tsx │ │ ├── CarrotLarge.tsx │ │ ├── Chatbot.tsx │ │ ├── ChevronRight.tsx │ │ ├── Clipboard.tsx │ │ ├── Code.tsx │ │ ├── DarkLight.tsx │ │ ├── Discord.tsx │ │ ├── Dislike.tsx │ │ ├── EclipseBook.tsx │ │ ├── EclipseIndividual.tsx │ │ ├── EclipseTeam.tsx │ │ ├── Edit.tsx │ │ ├── Ellipsis.tsx │ │ ├── Exclamation.tsx │ │ ├── Flag.tsx │ │ ├── Followup.tsx │ │ ├── GetInvolvedMobile.tsx │ │ ├── GovermentBuilding.tsx │ │ ├── Group.tsx │ │ ├── GroupTopEcplise.tsx │ │ ├── Hand.tsx │ │ ├── Heart.tsx │ │ ├── Hide.tsx │ │ ├── IntroMobile.tsx │ │ ├── Like.tsx │ │ ├── Link.tsx │ │ ├── LinkOut.tsx │ │ ├── ListLarge.tsx │ │ ├── Magnifying.tsx │ │ ├── MagnifyingGlass.tsx │ │ ├── MagnifyingLarge.tsx │ │ ├── Megaphone.tsx │ │ ├── Microscope.tsx │ │ ├── OpenBook.tsx │ │ ├── Paper.tsx │ │ ├── Pencil.tsx │ │ ├── People.tsx │ │ ├── PeopleHelpSection.tsx │ │ ├── Person.tsx │ │ ├── PersonInCircle.tsx │ │ ├── PiggyBank.tsx │ │ ├── PlaneSend.tsx │ │ ├── Play.tsx │ │ ├── PuzzlePieces.tsx │ │ ├── QuestionMark.tsx │ │ ├── Search.tsx │ │ ├── Settings.tsx │ │ ├── Share.tsx │ │ ├── SocialCopy.tsx │ │ ├── SocialEmail.tsx │ │ ├── SocialFacebook.tsx │ │ ├── SocialLinkedin.tsx │ │ ├── SocialReddit.tsx │ │ ├── SocialX.tsx │ │ ├── Speaker.tsx │ │ ├── Stamp.tsx │ │ ├── Stampy.tsx │ │ ├── StampyLarge.tsx │ │ ├── StampySmall.tsx │ │ ├── Tag.tsx │ │ ├── ThumbDown.tsx │ │ ├── ThumbDownLarge.tsx │ │ ├── ThumbUp.tsx │ │ ├── ThumbUpLarge.tsx │ │ ├── Undo.tsx │ │ ├── Users.tsx │ │ ├── X.tsx │ │ ├── XLarge.tsx │ │ └── index.ts │ ├── popups.ts │ └── search.tsx ├── entry.client.tsx ├── entry.server.tsx ├── hooks │ ├── isMobile.tsx │ ├── stateModifiers.tsx │ ├── theme.tsx │ ├── useCachedObjects.tsx │ ├── useChat.ts │ ├── useDraggable.tsx │ ├── useGlossary.ts │ ├── useOnOutsideClick.ts │ ├── useOnSiteQuestions.ts │ ├── useSearch.tsx │ └── useToC.tsx ├── mocks │ └── coda-responses │ │ ├── cached-coda-responses.json │ │ └── refresh-coda-data-for-tests.ts ├── root.css ├── root.tsx ├── routes │ ├── $redirects.tsx │ ├── [sitemap.xml].tsx │ ├── _index.tsx │ ├── cache.tsx │ ├── categories.$.tsx │ ├── categories.all.tsx │ ├── categories.single.$tag.tsx │ ├── chat.log.ts │ ├── chat.tsx │ ├── editors.tsx │ ├── how-can-i-help._index.tsx │ ├── how-can-i-help.career.tsx │ ├── how-can-i-help.community.tsx │ ├── how-can-i-help.donate.tsx │ ├── how-can-i-help.grassroots.tsx │ ├── how-can-i-help.knowledge.tsx │ ├── how-can-i-help.volunteer.tsx │ ├── questions.$questionId.$.tsx │ ├── questions.actions.tsx │ ├── questions.add.tsx │ ├── questions.allQuestions.ts │ ├── questions.allQuestionsOnSite.tsx │ ├── questions.answerDetailsOnSite.ts │ ├── questions.glossary.ts │ ├── questions.log.tsx │ ├── questions.search.tsx │ ├── questions.toc.ts │ ├── random.tsx │ └── sentry-example-page.tsx ├── routesMapper.ts ├── server-utils │ ├── coda-urls.ts │ ├── kv-cache.ts │ ├── parsing-utils.spec.ts │ ├── parsing-utils.ts │ ├── responses.ts │ ├── stampy.spec.ts │ └── stampy.ts └── utils │ └── article-collections.ts ├── instrumentation.server.mjs ├── jest.config.js ├── package.json ├── public ├── aisafety-logo.png ├── assets │ ├── Icon_External_Link.svg │ ├── arrow.svg │ ├── bryce.png │ ├── chevron-right.svg │ ├── coded-banner.svg │ ├── green-dot.svg │ ├── green.jpg │ ├── guy.jpeg │ └── plane-large.svg ├── embed-example.html ├── favicon-512.png ├── favicon.ico ├── robots.txt ├── tfWorker.js └── toc.json ├── remix.config.js ├── remix.env.d.ts ├── server.ts ├── stories ├── Article.stories.tsx ├── ArticlesKeepGoing.stories.tsx ├── ArticlesNav.stories.ts ├── Button.stories.tsx ├── CategoriesNav.stories.tsx ├── Configure.mdx ├── ContentB.stories.tsx ├── FeedbackForm.stories.tsx ├── Footer.stories.ts ├── Grid.stories.tsx ├── ListTable.stories.tsx ├── MenuItem.stories.ts ├── MobileNav.stories.tsx ├── Nav.stories.ts ├── SearchResults.stories.tsx ├── WidgetStampy.stories.tsx ├── assets │ ├── accessibility.png │ ├── accessibility.svg │ ├── addon-library.png │ ├── assets.png │ ├── avif-test-image.avif │ ├── context.png │ ├── discord.svg │ ├── docs.png │ ├── figma-plugin.png │ ├── github.svg │ ├── share.png │ ├── styling.png │ ├── testing.png │ ├── theming.png │ ├── tutorials.svg │ └── youtube.svg └── figma │ ├── test.stories.tsx │ └── testComponent.tsx ├── tsconfig.json └── wrangler.toml.template /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/deploy-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.github/workflows/deploy-dev.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/issue-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.github/workflows/issue-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/refresh-coda-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.github/workflows/refresh-coda-cache.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/README.md -------------------------------------------------------------------------------- /app/assets/Baginski.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/Baginski.jpeg -------------------------------------------------------------------------------- /app/assets/Lons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/Lons.jpg -------------------------------------------------------------------------------- /app/assets/icons/aisafety.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/aisafety.svg -------------------------------------------------------------------------------- /app/assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/arrow-right.svg -------------------------------------------------------------------------------- /app/assets/icons/arrow-up-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/arrow-up-right.svg -------------------------------------------------------------------------------- /app/assets/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/arrow.svg -------------------------------------------------------------------------------- /app/assets/icons/book-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/book-circle.svg -------------------------------------------------------------------------------- /app/assets/icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/book.svg -------------------------------------------------------------------------------- /app/assets/icons/bot-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/bot-small.svg -------------------------------------------------------------------------------- /app/assets/icons/bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/bot.svg -------------------------------------------------------------------------------- /app/assets/icons/bottom-eclipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/bottom-eclipse.svg -------------------------------------------------------------------------------- /app/assets/icons/box-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/box-arrow.svg -------------------------------------------------------------------------------- /app/assets/icons/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/briefcase.svg -------------------------------------------------------------------------------- /app/assets/icons/buoy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/buoy.svg -------------------------------------------------------------------------------- /app/assets/icons/carrot - large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/carrot - large.svg -------------------------------------------------------------------------------- /app/assets/icons/chatbot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/chatbot.svg -------------------------------------------------------------------------------- /app/assets/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/chevron-right.svg -------------------------------------------------------------------------------- /app/assets/icons/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/clipboard.svg -------------------------------------------------------------------------------- /app/assets/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/code.svg -------------------------------------------------------------------------------- /app/assets/icons/dark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/dark-light.svg -------------------------------------------------------------------------------- /app/assets/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/discord.svg -------------------------------------------------------------------------------- /app/assets/icons/dislike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/dislike.svg -------------------------------------------------------------------------------- /app/assets/icons/eclipse-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/eclipse-book.svg -------------------------------------------------------------------------------- /app/assets/icons/eclipse-individual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/eclipse-individual.svg -------------------------------------------------------------------------------- /app/assets/icons/eclipse-team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/eclipse-team.svg -------------------------------------------------------------------------------- /app/assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/edit.svg -------------------------------------------------------------------------------- /app/assets/icons/ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/ellipsis.svg -------------------------------------------------------------------------------- /app/assets/icons/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/exclamation.svg -------------------------------------------------------------------------------- /app/assets/icons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/flag.svg -------------------------------------------------------------------------------- /app/assets/icons/followup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/followup.svg -------------------------------------------------------------------------------- /app/assets/icons/get-involved-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/get-involved-mobile.svg -------------------------------------------------------------------------------- /app/assets/icons/goverment_building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/goverment_building.svg -------------------------------------------------------------------------------- /app/assets/icons/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/group.svg -------------------------------------------------------------------------------- /app/assets/icons/groupTop-ecplise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/groupTop-ecplise.svg -------------------------------------------------------------------------------- /app/assets/icons/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/hand.svg -------------------------------------------------------------------------------- /app/assets/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/heart.svg -------------------------------------------------------------------------------- /app/assets/icons/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/hide.svg -------------------------------------------------------------------------------- /app/assets/icons/intro-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/intro-mobile.svg -------------------------------------------------------------------------------- /app/assets/icons/like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/like.svg -------------------------------------------------------------------------------- /app/assets/icons/link-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/link-out.svg -------------------------------------------------------------------------------- /app/assets/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/link.svg -------------------------------------------------------------------------------- /app/assets/icons/list - large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/list - large.svg -------------------------------------------------------------------------------- /app/assets/icons/magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/magnifying-glass.svg -------------------------------------------------------------------------------- /app/assets/icons/magnifying-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/magnifying-large.svg -------------------------------------------------------------------------------- /app/assets/icons/magnifying.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/magnifying.svg -------------------------------------------------------------------------------- /app/assets/icons/megaphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/megaphone.svg -------------------------------------------------------------------------------- /app/assets/icons/microscope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/microscope.svg -------------------------------------------------------------------------------- /app/assets/icons/open-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/open-book.svg -------------------------------------------------------------------------------- /app/assets/icons/paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/paper.svg -------------------------------------------------------------------------------- /app/assets/icons/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/pencil.svg -------------------------------------------------------------------------------- /app/assets/icons/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/people.svg -------------------------------------------------------------------------------- /app/assets/icons/people_help_section.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/people_help_section.svg -------------------------------------------------------------------------------- /app/assets/icons/person-in-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/person-in-circle.svg -------------------------------------------------------------------------------- /app/assets/icons/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/person.svg -------------------------------------------------------------------------------- /app/assets/icons/piggy_bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/piggy_bank.svg -------------------------------------------------------------------------------- /app/assets/icons/plane-send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/plane-send.svg -------------------------------------------------------------------------------- /app/assets/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/play.svg -------------------------------------------------------------------------------- /app/assets/icons/puzzle_pieces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/puzzle_pieces.svg -------------------------------------------------------------------------------- /app/assets/icons/question-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/question-mark.svg -------------------------------------------------------------------------------- /app/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/search.svg -------------------------------------------------------------------------------- /app/assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/settings.svg -------------------------------------------------------------------------------- /app/assets/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/share.svg -------------------------------------------------------------------------------- /app/assets/icons/social-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/social-copy.svg -------------------------------------------------------------------------------- /app/assets/icons/social-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/social-email.svg -------------------------------------------------------------------------------- /app/assets/icons/social-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/social-facebook.svg -------------------------------------------------------------------------------- /app/assets/icons/social-linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/social-linkedin.svg -------------------------------------------------------------------------------- /app/assets/icons/social-reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/social-reddit.svg -------------------------------------------------------------------------------- /app/assets/icons/social-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/social-x.svg -------------------------------------------------------------------------------- /app/assets/icons/speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/speaker.svg -------------------------------------------------------------------------------- /app/assets/icons/stamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/stamp.svg -------------------------------------------------------------------------------- /app/assets/icons/stampy-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/stampy-large.svg -------------------------------------------------------------------------------- /app/assets/icons/stampy-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/stampy-small.svg -------------------------------------------------------------------------------- /app/assets/icons/stampy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/stampy.svg -------------------------------------------------------------------------------- /app/assets/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/tag.svg -------------------------------------------------------------------------------- /app/assets/icons/thumb-down-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/thumb-down-large.svg -------------------------------------------------------------------------------- /app/assets/icons/thumb-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/thumb-down.svg -------------------------------------------------------------------------------- /app/assets/icons/thumb-up-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/thumb-up-large.svg -------------------------------------------------------------------------------- /app/assets/icons/thumb-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/thumb-up.svg -------------------------------------------------------------------------------- /app/assets/icons/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/undo.svg -------------------------------------------------------------------------------- /app/assets/icons/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/users.svg -------------------------------------------------------------------------------- /app/assets/icons/x-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/x-large.svg -------------------------------------------------------------------------------- /app/assets/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/icons/x.svg -------------------------------------------------------------------------------- /app/assets/stampy-logo-min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/stampy-logo-min.svg -------------------------------------------------------------------------------- /app/assets/stampy-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/stampy-logo.svg -------------------------------------------------------------------------------- /app/assets/video_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/assets/video_thumbnail.png -------------------------------------------------------------------------------- /app/components/Article/Contents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Article/Contents.tsx -------------------------------------------------------------------------------- /app/components/Article/KeepGoing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Article/KeepGoing/index.tsx -------------------------------------------------------------------------------- /app/components/Article/KeepGoing/keepGoing.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Article/KeepGoing/keepGoing.module.css -------------------------------------------------------------------------------- /app/components/Article/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Article/article.css -------------------------------------------------------------------------------- /app/components/Article/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Article/index.tsx -------------------------------------------------------------------------------- /app/components/ArticleCarousel/article-carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ArticleCarousel/article-carousel.css -------------------------------------------------------------------------------- /app/components/ArticleCarousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ArticleCarousel/index.tsx -------------------------------------------------------------------------------- /app/components/ArticlesDropdown/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ArticlesDropdown/dropdown.css -------------------------------------------------------------------------------- /app/components/ArticlesDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ArticlesDropdown/index.tsx -------------------------------------------------------------------------------- /app/components/ArticlesNav/ArticleNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ArticlesNav/ArticleNav.tsx -------------------------------------------------------------------------------- /app/components/ArticlesNav/ArticleNavManualList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ArticlesNav/ArticleNavManualList.tsx -------------------------------------------------------------------------------- /app/components/ArticlesNav/articlenav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ArticlesNav/articlenav.css -------------------------------------------------------------------------------- /app/components/Button/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Button/button.css -------------------------------------------------------------------------------- /app/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Button/index.tsx -------------------------------------------------------------------------------- /app/components/Card/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Card/card.css -------------------------------------------------------------------------------- /app/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Card/index.tsx -------------------------------------------------------------------------------- /app/components/CardSmall/cardsmall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/CardSmall/cardsmall.css -------------------------------------------------------------------------------- /app/components/CardSmall/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/CardSmall/index.tsx -------------------------------------------------------------------------------- /app/components/CategoriesNav/CategoriesNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/CategoriesNav/CategoriesNav.tsx -------------------------------------------------------------------------------- /app/components/CategoriesNav/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/CategoriesNav/Page.tsx -------------------------------------------------------------------------------- /app/components/CategoriesNav/categoriesnav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/CategoriesNav/categoriesnav.css -------------------------------------------------------------------------------- /app/components/Chatbot/ChatEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Chatbot/ChatEntry.tsx -------------------------------------------------------------------------------- /app/components/Chatbot/chat_entry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Chatbot/chat_entry.css -------------------------------------------------------------------------------- /app/components/Chatbot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Chatbot/index.tsx -------------------------------------------------------------------------------- /app/components/Chatbot/widgit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Chatbot/widgit.css -------------------------------------------------------------------------------- /app/components/ContentBox/box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ContentBox/box.css -------------------------------------------------------------------------------- /app/components/ContentBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ContentBox/index.tsx -------------------------------------------------------------------------------- /app/components/DropDown/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/DropDown/dropdown.css -------------------------------------------------------------------------------- /app/components/DropDown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/DropDown/index.tsx -------------------------------------------------------------------------------- /app/components/Error/error.module.css: -------------------------------------------------------------------------------- 1 | .errorContainer { 2 | margin: var(--spacing-24) auto; 3 | height: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /app/components/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Error/index.tsx -------------------------------------------------------------------------------- /app/components/Feedback/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Feedback/Form.tsx -------------------------------------------------------------------------------- /app/components/Feedback/feedback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Feedback/feedback.css -------------------------------------------------------------------------------- /app/components/Feedback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Feedback/index.tsx -------------------------------------------------------------------------------- /app/components/Footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Footer/footer.css -------------------------------------------------------------------------------- /app/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Footer/index.tsx -------------------------------------------------------------------------------- /app/components/GlobalBanners/global-banners.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/GlobalBanners/global-banners.css -------------------------------------------------------------------------------- /app/components/GlobalBanners/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/GlobalBanners/index.tsx -------------------------------------------------------------------------------- /app/components/Grid/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Grid/grid.css -------------------------------------------------------------------------------- /app/components/Grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Grid/index.tsx -------------------------------------------------------------------------------- /app/components/HelpGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/HelpGrid/index.tsx -------------------------------------------------------------------------------- /app/components/HowCanIHelp/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/HowCanIHelp/Base.tsx -------------------------------------------------------------------------------- /app/components/HowCanIHelp/HelpItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/HowCanIHelp/HelpItem.tsx -------------------------------------------------------------------------------- /app/components/HowCanIHelp/HelpMethods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/HowCanIHelp/HelpMethods.tsx -------------------------------------------------------------------------------- /app/components/HowCanIHelp/howcanihelp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/HowCanIHelp/howcanihelp.css -------------------------------------------------------------------------------- /app/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Input/index.tsx -------------------------------------------------------------------------------- /app/components/Input/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Input/input.css -------------------------------------------------------------------------------- /app/components/LinkCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/LinkCard/index.tsx -------------------------------------------------------------------------------- /app/components/LinkCard/linkcard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/LinkCard/linkcard.css -------------------------------------------------------------------------------- /app/components/MediaCarousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/MediaCarousel/index.tsx -------------------------------------------------------------------------------- /app/components/MediaCarousel/mediacarousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/MediaCarousel/mediacarousel.css -------------------------------------------------------------------------------- /app/components/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Menu/index.tsx -------------------------------------------------------------------------------- /app/components/Menu/menuItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Menu/menuItem.css -------------------------------------------------------------------------------- /app/components/Nav/Mobile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Nav/Mobile/index.tsx -------------------------------------------------------------------------------- /app/components/Nav/Mobile/navMobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Nav/Mobile/navMobile.css -------------------------------------------------------------------------------- /app/components/Nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Nav/index.tsx -------------------------------------------------------------------------------- /app/components/Nav/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Nav/nav.css -------------------------------------------------------------------------------- /app/components/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Page.tsx -------------------------------------------------------------------------------- /app/components/SearchInput/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/SearchInput/Input.tsx -------------------------------------------------------------------------------- /app/components/SearchInput/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/SearchInput/input.css -------------------------------------------------------------------------------- /app/components/SearchResults/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/SearchResults/Dropdown.tsx -------------------------------------------------------------------------------- /app/components/SearchResults/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/SearchResults/dropdown.css -------------------------------------------------------------------------------- /app/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Table/index.tsx -------------------------------------------------------------------------------- /app/components/Table/listTable.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Table/listTable.module.css -------------------------------------------------------------------------------- /app/components/Testimonial/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Testimonial/index.tsx -------------------------------------------------------------------------------- /app/components/Testimonial/testimonial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/Testimonial/testimonial.css -------------------------------------------------------------------------------- /app/components/ThemeToggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ThemeToggle/index.tsx -------------------------------------------------------------------------------- /app/components/ThemeToggle/themeToggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/ThemeToggle/themeToggle.css -------------------------------------------------------------------------------- /app/components/VideoThumbnail/videothumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/VideoThumbnail/videothumbnail.tsx -------------------------------------------------------------------------------- /app/components/copyLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/copyLink.tsx -------------------------------------------------------------------------------- /app/components/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/dialog.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Aisafety.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Aisafety.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Arrow.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/ArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/ArrowRight.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/ArrowUpRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/ArrowUpRight.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Book.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Book.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/BookCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/BookCircle.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Bot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Bot.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/BotSmall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/BotSmall.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/BottomEclipse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/BottomEclipse.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/BoxArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/BoxArrow.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Briefcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Briefcase.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Buoy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Buoy.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/CarrotLarge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/CarrotLarge.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Chatbot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Chatbot.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/ChevronRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/ChevronRight.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Clipboard.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Code.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/DarkLight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/DarkLight.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Discord.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Dislike.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Dislike.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/EclipseBook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/EclipseBook.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/EclipseIndividual.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/EclipseIndividual.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/EclipseTeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/EclipseTeam.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Edit.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Ellipsis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Ellipsis.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Exclamation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Exclamation.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Flag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Flag.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Followup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Followup.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/GetInvolvedMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/GetInvolvedMobile.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/GovermentBuilding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/GovermentBuilding.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Group.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/GroupTopEcplise.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/GroupTopEcplise.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Hand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Hand.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Heart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Heart.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Hide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Hide.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/IntroMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/IntroMobile.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Like.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Like.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Link.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/LinkOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/LinkOut.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/ListLarge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/ListLarge.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Magnifying.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Magnifying.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/MagnifyingGlass.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/MagnifyingGlass.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/MagnifyingLarge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/MagnifyingLarge.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Megaphone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Megaphone.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Microscope.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Microscope.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/OpenBook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/OpenBook.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Paper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Paper.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Pencil.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Pencil.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/People.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/People.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/PeopleHelpSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/PeopleHelpSection.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Person.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Person.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/PersonInCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/PersonInCircle.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/PiggyBank.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/PiggyBank.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/PlaneSend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/PlaneSend.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Play.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Play.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/PuzzlePieces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/PuzzlePieces.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/QuestionMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/QuestionMark.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Search.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Settings.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Share.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/SocialCopy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/SocialCopy.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/SocialEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/SocialEmail.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/SocialFacebook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/SocialFacebook.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/SocialLinkedin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/SocialLinkedin.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/SocialReddit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/SocialReddit.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/SocialX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/SocialX.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Speaker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Speaker.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Stamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Stamp.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Stampy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Stampy.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/StampyLarge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/StampyLarge.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/StampySmall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/StampySmall.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Tag.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/ThumbDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/ThumbDown.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/ThumbDownLarge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/ThumbDownLarge.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/ThumbUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/ThumbUp.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/ThumbUpLarge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/ThumbUpLarge.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Undo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Undo.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/Users.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/X.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/X.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/XLarge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/XLarge.tsx -------------------------------------------------------------------------------- /app/components/icons-generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/icons-generated/index.ts -------------------------------------------------------------------------------- /app/components/popups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/popups.ts -------------------------------------------------------------------------------- /app/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/components/search.tsx -------------------------------------------------------------------------------- /app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/entry.client.tsx -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/hooks/isMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/isMobile.tsx -------------------------------------------------------------------------------- /app/hooks/stateModifiers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/stateModifiers.tsx -------------------------------------------------------------------------------- /app/hooks/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/theme.tsx -------------------------------------------------------------------------------- /app/hooks/useCachedObjects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/useCachedObjects.tsx -------------------------------------------------------------------------------- /app/hooks/useChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/useChat.ts -------------------------------------------------------------------------------- /app/hooks/useDraggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/useDraggable.tsx -------------------------------------------------------------------------------- /app/hooks/useGlossary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/useGlossary.ts -------------------------------------------------------------------------------- /app/hooks/useOnOutsideClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/useOnOutsideClick.ts -------------------------------------------------------------------------------- /app/hooks/useOnSiteQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/useOnSiteQuestions.ts -------------------------------------------------------------------------------- /app/hooks/useSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/useSearch.tsx -------------------------------------------------------------------------------- /app/hooks/useToC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/hooks/useToC.tsx -------------------------------------------------------------------------------- /app/mocks/coda-responses/cached-coda-responses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/mocks/coda-responses/cached-coda-responses.json -------------------------------------------------------------------------------- /app/mocks/coda-responses/refresh-coda-data-for-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/mocks/coda-responses/refresh-coda-data-for-tests.ts -------------------------------------------------------------------------------- /app/root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/root.css -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/$redirects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/$redirects.tsx -------------------------------------------------------------------------------- /app/routes/[sitemap.xml].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/[sitemap.xml].tsx -------------------------------------------------------------------------------- /app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/_index.tsx -------------------------------------------------------------------------------- /app/routes/cache.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/cache.tsx -------------------------------------------------------------------------------- /app/routes/categories.$.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/categories.$.tsx -------------------------------------------------------------------------------- /app/routes/categories.all.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/categories.all.tsx -------------------------------------------------------------------------------- /app/routes/categories.single.$tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/categories.single.$tag.tsx -------------------------------------------------------------------------------- /app/routes/chat.log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/chat.log.ts -------------------------------------------------------------------------------- /app/routes/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/chat.tsx -------------------------------------------------------------------------------- /app/routes/editors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/editors.tsx -------------------------------------------------------------------------------- /app/routes/how-can-i-help._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/how-can-i-help._index.tsx -------------------------------------------------------------------------------- /app/routes/how-can-i-help.career.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/how-can-i-help.career.tsx -------------------------------------------------------------------------------- /app/routes/how-can-i-help.community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/how-can-i-help.community.tsx -------------------------------------------------------------------------------- /app/routes/how-can-i-help.donate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/how-can-i-help.donate.tsx -------------------------------------------------------------------------------- /app/routes/how-can-i-help.grassroots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/how-can-i-help.grassroots.tsx -------------------------------------------------------------------------------- /app/routes/how-can-i-help.knowledge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/how-can-i-help.knowledge.tsx -------------------------------------------------------------------------------- /app/routes/how-can-i-help.volunteer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/how-can-i-help.volunteer.tsx -------------------------------------------------------------------------------- /app/routes/questions.$questionId.$.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.$questionId.$.tsx -------------------------------------------------------------------------------- /app/routes/questions.actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.actions.tsx -------------------------------------------------------------------------------- /app/routes/questions.add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.add.tsx -------------------------------------------------------------------------------- /app/routes/questions.allQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.allQuestions.ts -------------------------------------------------------------------------------- /app/routes/questions.allQuestionsOnSite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.allQuestionsOnSite.tsx -------------------------------------------------------------------------------- /app/routes/questions.answerDetailsOnSite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.answerDetailsOnSite.ts -------------------------------------------------------------------------------- /app/routes/questions.glossary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.glossary.ts -------------------------------------------------------------------------------- /app/routes/questions.log.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.log.tsx -------------------------------------------------------------------------------- /app/routes/questions.search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.search.tsx -------------------------------------------------------------------------------- /app/routes/questions.toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/questions.toc.ts -------------------------------------------------------------------------------- /app/routes/random.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/random.tsx -------------------------------------------------------------------------------- /app/routes/sentry-example-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routes/sentry-example-page.tsx -------------------------------------------------------------------------------- /app/routesMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/routesMapper.ts -------------------------------------------------------------------------------- /app/server-utils/coda-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/server-utils/coda-urls.ts -------------------------------------------------------------------------------- /app/server-utils/kv-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/server-utils/kv-cache.ts -------------------------------------------------------------------------------- /app/server-utils/parsing-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/server-utils/parsing-utils.spec.ts -------------------------------------------------------------------------------- /app/server-utils/parsing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/server-utils/parsing-utils.ts -------------------------------------------------------------------------------- /app/server-utils/responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/server-utils/responses.ts -------------------------------------------------------------------------------- /app/server-utils/stampy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/server-utils/stampy.spec.ts -------------------------------------------------------------------------------- /app/server-utils/stampy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/server-utils/stampy.ts -------------------------------------------------------------------------------- /app/utils/article-collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/app/utils/article-collections.ts -------------------------------------------------------------------------------- /instrumentation.server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/instrumentation.server.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/package.json -------------------------------------------------------------------------------- /public/aisafety-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/aisafety-logo.png -------------------------------------------------------------------------------- /public/assets/Icon_External_Link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/assets/Icon_External_Link.svg -------------------------------------------------------------------------------- /public/assets/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/assets/arrow.svg -------------------------------------------------------------------------------- /public/assets/bryce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/assets/bryce.png -------------------------------------------------------------------------------- /public/assets/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/assets/chevron-right.svg -------------------------------------------------------------------------------- /public/assets/coded-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/assets/coded-banner.svg -------------------------------------------------------------------------------- /public/assets/green-dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/assets/green-dot.svg -------------------------------------------------------------------------------- /public/assets/green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/assets/green.jpg -------------------------------------------------------------------------------- /public/assets/guy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/assets/guy.jpeg -------------------------------------------------------------------------------- /public/assets/plane-large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/assets/plane-large.svg -------------------------------------------------------------------------------- /public/embed-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/embed-example.html -------------------------------------------------------------------------------- /public/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/favicon-512.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/tfWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/tfWorker.js -------------------------------------------------------------------------------- /public/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/public/toc.json -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/remix.config.js -------------------------------------------------------------------------------- /remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/remix.env.d.ts -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/server.ts -------------------------------------------------------------------------------- /stories/Article.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/Article.stories.tsx -------------------------------------------------------------------------------- /stories/ArticlesKeepGoing.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/ArticlesKeepGoing.stories.tsx -------------------------------------------------------------------------------- /stories/ArticlesNav.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/ArticlesNav.stories.ts -------------------------------------------------------------------------------- /stories/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/Button.stories.tsx -------------------------------------------------------------------------------- /stories/CategoriesNav.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/CategoriesNav.stories.tsx -------------------------------------------------------------------------------- /stories/Configure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/Configure.mdx -------------------------------------------------------------------------------- /stories/ContentB.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/ContentB.stories.tsx -------------------------------------------------------------------------------- /stories/FeedbackForm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/FeedbackForm.stories.tsx -------------------------------------------------------------------------------- /stories/Footer.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/Footer.stories.ts -------------------------------------------------------------------------------- /stories/Grid.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/Grid.stories.tsx -------------------------------------------------------------------------------- /stories/ListTable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/ListTable.stories.tsx -------------------------------------------------------------------------------- /stories/MenuItem.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/MenuItem.stories.ts -------------------------------------------------------------------------------- /stories/MobileNav.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/MobileNav.stories.tsx -------------------------------------------------------------------------------- /stories/Nav.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/Nav.stories.ts -------------------------------------------------------------------------------- /stories/SearchResults.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/SearchResults.stories.tsx -------------------------------------------------------------------------------- /stories/WidgetStampy.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/WidgetStampy.stories.tsx -------------------------------------------------------------------------------- /stories/assets/accessibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/accessibility.png -------------------------------------------------------------------------------- /stories/assets/accessibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/accessibility.svg -------------------------------------------------------------------------------- /stories/assets/addon-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/addon-library.png -------------------------------------------------------------------------------- /stories/assets/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/assets.png -------------------------------------------------------------------------------- /stories/assets/avif-test-image.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/avif-test-image.avif -------------------------------------------------------------------------------- /stories/assets/context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/context.png -------------------------------------------------------------------------------- /stories/assets/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/discord.svg -------------------------------------------------------------------------------- /stories/assets/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/docs.png -------------------------------------------------------------------------------- /stories/assets/figma-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/figma-plugin.png -------------------------------------------------------------------------------- /stories/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/github.svg -------------------------------------------------------------------------------- /stories/assets/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/share.png -------------------------------------------------------------------------------- /stories/assets/styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/styling.png -------------------------------------------------------------------------------- /stories/assets/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/testing.png -------------------------------------------------------------------------------- /stories/assets/theming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/theming.png -------------------------------------------------------------------------------- /stories/assets/tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/tutorials.svg -------------------------------------------------------------------------------- /stories/assets/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/assets/youtube.svg -------------------------------------------------------------------------------- /stories/figma/test.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/stories/figma/test.stories.tsx -------------------------------------------------------------------------------- /stories/figma/testComponent.tsx: -------------------------------------------------------------------------------- 1 | export const MyComponent = () => { 2 | return <> 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StampyAI/stampy-ui/HEAD/wrangler.toml.template --------------------------------------------------------------------------------