├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── pull_request.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── backend ├── __tests__ │ ├── filters.ts │ └── twitter.ts ├── db.ts ├── filters.ts ├── jest-setup.ts ├── logger.ts ├── metadata.ts ├── scripts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── parseTweets.ts.snap │ │ └── parseTweets.ts │ ├── fetch_tweet.ts │ ├── parseTweets.ts │ └── parseTweets__run__.ts ├── testUtils.ts └── twitter.ts ├── common └── date.ts ├── global.d.ts ├── jest.config.js ├── migrations ├── 20200809204743-init │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200809220012-add-unique-to-twitter-id │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200815113601-make-community-optional-on-list │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200829201151-add_new_columns_to_tweet_table │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200829204833-remove-account-url-from-tweet │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200912102850-remove_list_model │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200912103736-change-tweet-type-to-array │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200912190627-tweet-type-enum-to-tweet-type-table │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200912191541-add-unique-to-tweet-type │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200912191941-fix-relationship │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200926182140-remove-model-mapping │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20200926183131-add-payload-type │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20201002131326-add-link-preview-data │ ├── README.md │ ├── schema.prisma │ └── steps.json ├── 20201003164746-add-link-url │ ├── README.md │ ├── schema.prisma │ └── steps.json └── migrate.lock ├── mock.d.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── postinstall.js ├── public ├── digital_ocean.png ├── icons │ ├── apple-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── icon-144x144.png │ ├── icon-152x152.png │ ├── icon-192x192.png │ ├── icon-72x72.png │ └── icon-96x96.png ├── images │ └── me.png ├── manifest.json ├── preview.png ├── profile.jpg ├── vercel.svg └── youtube-preview.jpg ├── schema.prisma ├── src ├── components │ ├── BalloonImage │ │ ├── Defs.tsx │ │ ├── LargeBalloon.tsx │ │ ├── SmallBalloons.tsx │ │ └── index.tsx │ ├── CellPhoneImage.tsx │ ├── CheckboxButton.tsx │ ├── Container.tsx │ ├── EnvelopeImage │ │ ├── Flowers.tsx │ │ ├── Logos.tsx │ │ └── index.tsx │ ├── FAQ.tsx │ ├── FAQImage.tsx │ ├── Footer.tsx │ ├── GroupedRadioButtons.tsx │ ├── Icons.tsx │ ├── Link.tsx │ ├── ListFilters │ │ ├── DesktopListFilters.tsx │ │ ├── MobileListFilters.tsx │ │ ├── common.ts │ │ └── index.tsx │ ├── MailboxImage.tsx │ ├── MountainImage │ │ ├── BackMountains.tsx │ │ ├── Chair.tsx │ │ ├── Clouds.tsx │ │ ├── Defs.tsx │ │ ├── FrontMountains.tsx │ │ ├── Girl.tsx │ │ ├── Leaves.tsx │ │ ├── TwitterLogo.tsx │ │ └── index.tsx │ ├── Navbar.tsx │ ├── NewsletterPrompt.tsx │ ├── ProblemSolutionSection.tsx │ ├── Section.tsx │ ├── TabletImage.tsx │ ├── TopSection.tsx │ ├── TweetBox.tsx │ ├── TweetBoxActions.tsx │ ├── TweetBoxAd.tsx │ ├── TweetBoxContent.tsx │ ├── TweetBoxCropped.tsx │ ├── TweetBoxHeader.tsx │ ├── TweetBoxRetweet.tsx │ ├── TweetBoxRetweetHeader.tsx │ ├── TweetBoxTrophyHeader.tsx │ └── WhatAreYouWaitingForSection.tsx ├── constants.ts ├── controllers │ └── tweets.ts ├── fetcher.ts ├── filters.ts ├── gtag.ts ├── logger.ts ├── newsletter.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ ├── api │ │ ├── create-subscriber.ts │ │ └── tweets.ts │ ├── index.tsx │ └── leaderboard │ │ ├── [filters].tsx │ │ └── index.tsx ├── prisma.ts ├── styles │ └── nprogress.css ├── svg-utils.ts ├── theme │ ├── components │ │ ├── button.ts │ │ ├── heading.ts │ │ ├── index.ts │ │ ├── input.ts │ │ └── link.ts │ ├── foundations │ │ ├── breakpoints.ts │ │ ├── colors.ts │ │ ├── fonts.ts │ │ ├── index.ts │ │ └── shadows.ts │ ├── index.ts │ └── styles.ts └── utils.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/README.md -------------------------------------------------------------------------------- /backend/__tests__/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/__tests__/filters.ts -------------------------------------------------------------------------------- /backend/__tests__/twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/__tests__/twitter.ts -------------------------------------------------------------------------------- /backend/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/db.ts -------------------------------------------------------------------------------- /backend/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/filters.ts -------------------------------------------------------------------------------- /backend/jest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/jest-setup.ts -------------------------------------------------------------------------------- /backend/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/logger.ts -------------------------------------------------------------------------------- /backend/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/metadata.ts -------------------------------------------------------------------------------- /backend/scripts/__tests__/__snapshots__/parseTweets.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/scripts/__tests__/__snapshots__/parseTweets.ts.snap -------------------------------------------------------------------------------- /backend/scripts/__tests__/parseTweets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/scripts/__tests__/parseTweets.ts -------------------------------------------------------------------------------- /backend/scripts/fetch_tweet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/scripts/fetch_tweet.ts -------------------------------------------------------------------------------- /backend/scripts/parseTweets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/scripts/parseTweets.ts -------------------------------------------------------------------------------- /backend/scripts/parseTweets__run__.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/scripts/parseTweets__run__.ts -------------------------------------------------------------------------------- /backend/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/testUtils.ts -------------------------------------------------------------------------------- /backend/twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/backend/twitter.ts -------------------------------------------------------------------------------- /common/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/common/date.ts -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/global.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/jest.config.js -------------------------------------------------------------------------------- /migrations/20200809204743-init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200809204743-init/README.md -------------------------------------------------------------------------------- /migrations/20200809204743-init/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200809204743-init/schema.prisma -------------------------------------------------------------------------------- /migrations/20200809204743-init/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200809204743-init/steps.json -------------------------------------------------------------------------------- /migrations/20200809220012-add-unique-to-twitter-id/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200809220012-add-unique-to-twitter-id/README.md -------------------------------------------------------------------------------- /migrations/20200809220012-add-unique-to-twitter-id/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200809220012-add-unique-to-twitter-id/schema.prisma -------------------------------------------------------------------------------- /migrations/20200809220012-add-unique-to-twitter-id/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200809220012-add-unique-to-twitter-id/steps.json -------------------------------------------------------------------------------- /migrations/20200815113601-make-community-optional-on-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200815113601-make-community-optional-on-list/README.md -------------------------------------------------------------------------------- /migrations/20200815113601-make-community-optional-on-list/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200815113601-make-community-optional-on-list/schema.prisma -------------------------------------------------------------------------------- /migrations/20200815113601-make-community-optional-on-list/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200815113601-make-community-optional-on-list/steps.json -------------------------------------------------------------------------------- /migrations/20200829201151-add_new_columns_to_tweet_table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200829201151-add_new_columns_to_tweet_table/README.md -------------------------------------------------------------------------------- /migrations/20200829201151-add_new_columns_to_tweet_table/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200829201151-add_new_columns_to_tweet_table/schema.prisma -------------------------------------------------------------------------------- /migrations/20200829201151-add_new_columns_to_tweet_table/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200829201151-add_new_columns_to_tweet_table/steps.json -------------------------------------------------------------------------------- /migrations/20200829204833-remove-account-url-from-tweet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200829204833-remove-account-url-from-tweet/README.md -------------------------------------------------------------------------------- /migrations/20200829204833-remove-account-url-from-tweet/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200829204833-remove-account-url-from-tweet/schema.prisma -------------------------------------------------------------------------------- /migrations/20200829204833-remove-account-url-from-tweet/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200829204833-remove-account-url-from-tweet/steps.json -------------------------------------------------------------------------------- /migrations/20200912102850-remove_list_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912102850-remove_list_model/README.md -------------------------------------------------------------------------------- /migrations/20200912102850-remove_list_model/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912102850-remove_list_model/schema.prisma -------------------------------------------------------------------------------- /migrations/20200912102850-remove_list_model/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912102850-remove_list_model/steps.json -------------------------------------------------------------------------------- /migrations/20200912103736-change-tweet-type-to-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912103736-change-tweet-type-to-array/README.md -------------------------------------------------------------------------------- /migrations/20200912103736-change-tweet-type-to-array/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912103736-change-tweet-type-to-array/schema.prisma -------------------------------------------------------------------------------- /migrations/20200912103736-change-tweet-type-to-array/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912103736-change-tweet-type-to-array/steps.json -------------------------------------------------------------------------------- /migrations/20200912190627-tweet-type-enum-to-tweet-type-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912190627-tweet-type-enum-to-tweet-type-table/README.md -------------------------------------------------------------------------------- /migrations/20200912190627-tweet-type-enum-to-tweet-type-table/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912190627-tweet-type-enum-to-tweet-type-table/schema.prisma -------------------------------------------------------------------------------- /migrations/20200912190627-tweet-type-enum-to-tweet-type-table/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912190627-tweet-type-enum-to-tweet-type-table/steps.json -------------------------------------------------------------------------------- /migrations/20200912191541-add-unique-to-tweet-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912191541-add-unique-to-tweet-type/README.md -------------------------------------------------------------------------------- /migrations/20200912191541-add-unique-to-tweet-type/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912191541-add-unique-to-tweet-type/schema.prisma -------------------------------------------------------------------------------- /migrations/20200912191541-add-unique-to-tweet-type/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912191541-add-unique-to-tweet-type/steps.json -------------------------------------------------------------------------------- /migrations/20200912191941-fix-relationship/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912191941-fix-relationship/README.md -------------------------------------------------------------------------------- /migrations/20200912191941-fix-relationship/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912191941-fix-relationship/schema.prisma -------------------------------------------------------------------------------- /migrations/20200912191941-fix-relationship/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200912191941-fix-relationship/steps.json -------------------------------------------------------------------------------- /migrations/20200926182140-remove-model-mapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200926182140-remove-model-mapping/README.md -------------------------------------------------------------------------------- /migrations/20200926182140-remove-model-mapping/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200926182140-remove-model-mapping/schema.prisma -------------------------------------------------------------------------------- /migrations/20200926182140-remove-model-mapping/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200926182140-remove-model-mapping/steps.json -------------------------------------------------------------------------------- /migrations/20200926183131-add-payload-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200926183131-add-payload-type/README.md -------------------------------------------------------------------------------- /migrations/20200926183131-add-payload-type/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200926183131-add-payload-type/schema.prisma -------------------------------------------------------------------------------- /migrations/20200926183131-add-payload-type/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20200926183131-add-payload-type/steps.json -------------------------------------------------------------------------------- /migrations/20201002131326-add-link-preview-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20201002131326-add-link-preview-data/README.md -------------------------------------------------------------------------------- /migrations/20201002131326-add-link-preview-data/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20201002131326-add-link-preview-data/schema.prisma -------------------------------------------------------------------------------- /migrations/20201002131326-add-link-preview-data/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20201002131326-add-link-preview-data/steps.json -------------------------------------------------------------------------------- /migrations/20201003164746-add-link-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20201003164746-add-link-url/README.md -------------------------------------------------------------------------------- /migrations/20201003164746-add-link-url/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20201003164746-add-link-url/schema.prisma -------------------------------------------------------------------------------- /migrations/20201003164746-add-link-url/steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/20201003164746-add-link-url/steps.json -------------------------------------------------------------------------------- /migrations/migrate.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/migrations/migrate.lock -------------------------------------------------------------------------------- /mock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/mock.d.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/package.json -------------------------------------------------------------------------------- /postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/postinstall.js -------------------------------------------------------------------------------- /public/digital_ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/digital_ocean.png -------------------------------------------------------------------------------- /public/icons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/icons/apple-icon.png -------------------------------------------------------------------------------- /public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/icons/icon-144x144.png -------------------------------------------------------------------------------- /public/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/icons/icon-152x152.png -------------------------------------------------------------------------------- /public/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/icons/icon-72x72.png -------------------------------------------------------------------------------- /public/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/icons/icon-96x96.png -------------------------------------------------------------------------------- /public/images/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/images/me.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/preview.png -------------------------------------------------------------------------------- /public/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/profile.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/youtube-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/public/youtube-preview.jpg -------------------------------------------------------------------------------- /schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/schema.prisma -------------------------------------------------------------------------------- /src/components/BalloonImage/Defs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/BalloonImage/Defs.tsx -------------------------------------------------------------------------------- /src/components/BalloonImage/LargeBalloon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/BalloonImage/LargeBalloon.tsx -------------------------------------------------------------------------------- /src/components/BalloonImage/SmallBalloons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/BalloonImage/SmallBalloons.tsx -------------------------------------------------------------------------------- /src/components/BalloonImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/BalloonImage/index.tsx -------------------------------------------------------------------------------- /src/components/CellPhoneImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/CellPhoneImage.tsx -------------------------------------------------------------------------------- /src/components/CheckboxButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/CheckboxButton.tsx -------------------------------------------------------------------------------- /src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/Container.tsx -------------------------------------------------------------------------------- /src/components/EnvelopeImage/Flowers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/EnvelopeImage/Flowers.tsx -------------------------------------------------------------------------------- /src/components/EnvelopeImage/Logos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/EnvelopeImage/Logos.tsx -------------------------------------------------------------------------------- /src/components/EnvelopeImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/EnvelopeImage/index.tsx -------------------------------------------------------------------------------- /src/components/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/FAQ.tsx -------------------------------------------------------------------------------- /src/components/FAQImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/FAQImage.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/GroupedRadioButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/GroupedRadioButtons.tsx -------------------------------------------------------------------------------- /src/components/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/Icons.tsx -------------------------------------------------------------------------------- /src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/Link.tsx -------------------------------------------------------------------------------- /src/components/ListFilters/DesktopListFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/ListFilters/DesktopListFilters.tsx -------------------------------------------------------------------------------- /src/components/ListFilters/MobileListFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/ListFilters/MobileListFilters.tsx -------------------------------------------------------------------------------- /src/components/ListFilters/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/ListFilters/common.ts -------------------------------------------------------------------------------- /src/components/ListFilters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/ListFilters/index.tsx -------------------------------------------------------------------------------- /src/components/MailboxImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MailboxImage.tsx -------------------------------------------------------------------------------- /src/components/MountainImage/BackMountains.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MountainImage/BackMountains.tsx -------------------------------------------------------------------------------- /src/components/MountainImage/Chair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MountainImage/Chair.tsx -------------------------------------------------------------------------------- /src/components/MountainImage/Clouds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MountainImage/Clouds.tsx -------------------------------------------------------------------------------- /src/components/MountainImage/Defs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MountainImage/Defs.tsx -------------------------------------------------------------------------------- /src/components/MountainImage/FrontMountains.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MountainImage/FrontMountains.tsx -------------------------------------------------------------------------------- /src/components/MountainImage/Girl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MountainImage/Girl.tsx -------------------------------------------------------------------------------- /src/components/MountainImage/Leaves.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MountainImage/Leaves.tsx -------------------------------------------------------------------------------- /src/components/MountainImage/TwitterLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MountainImage/TwitterLogo.tsx -------------------------------------------------------------------------------- /src/components/MountainImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/MountainImage/index.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/NewsletterPrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/NewsletterPrompt.tsx -------------------------------------------------------------------------------- /src/components/ProblemSolutionSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/ProblemSolutionSection.tsx -------------------------------------------------------------------------------- /src/components/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/Section.tsx -------------------------------------------------------------------------------- /src/components/TabletImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TabletImage.tsx -------------------------------------------------------------------------------- /src/components/TopSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TopSection.tsx -------------------------------------------------------------------------------- /src/components/TweetBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TweetBox.tsx -------------------------------------------------------------------------------- /src/components/TweetBoxActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TweetBoxActions.tsx -------------------------------------------------------------------------------- /src/components/TweetBoxAd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TweetBoxAd.tsx -------------------------------------------------------------------------------- /src/components/TweetBoxContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TweetBoxContent.tsx -------------------------------------------------------------------------------- /src/components/TweetBoxCropped.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TweetBoxCropped.tsx -------------------------------------------------------------------------------- /src/components/TweetBoxHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TweetBoxHeader.tsx -------------------------------------------------------------------------------- /src/components/TweetBoxRetweet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TweetBoxRetweet.tsx -------------------------------------------------------------------------------- /src/components/TweetBoxRetweetHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TweetBoxRetweetHeader.tsx -------------------------------------------------------------------------------- /src/components/TweetBoxTrophyHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/TweetBoxTrophyHeader.tsx -------------------------------------------------------------------------------- /src/components/WhatAreYouWaitingForSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/components/WhatAreYouWaitingForSection.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/controllers/tweets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/controllers/tweets.ts -------------------------------------------------------------------------------- /src/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/fetcher.ts -------------------------------------------------------------------------------- /src/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/filters.ts -------------------------------------------------------------------------------- /src/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/gtag.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/newsletter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/newsletter.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/pages/_error.tsx -------------------------------------------------------------------------------- /src/pages/api/create-subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/pages/api/create-subscriber.ts -------------------------------------------------------------------------------- /src/pages/api/tweets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/pages/api/tweets.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/leaderboard/[filters].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/pages/leaderboard/[filters].tsx -------------------------------------------------------------------------------- /src/pages/leaderboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/pages/leaderboard/index.tsx -------------------------------------------------------------------------------- /src/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/prisma.ts -------------------------------------------------------------------------------- /src/styles/nprogress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/styles/nprogress.css -------------------------------------------------------------------------------- /src/svg-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/svg-utils.ts -------------------------------------------------------------------------------- /src/theme/components/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/components/button.ts -------------------------------------------------------------------------------- /src/theme/components/heading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/components/heading.ts -------------------------------------------------------------------------------- /src/theme/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/components/index.ts -------------------------------------------------------------------------------- /src/theme/components/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/components/input.ts -------------------------------------------------------------------------------- /src/theme/components/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/components/link.ts -------------------------------------------------------------------------------- /src/theme/foundations/breakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/foundations/breakpoints.ts -------------------------------------------------------------------------------- /src/theme/foundations/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/foundations/colors.ts -------------------------------------------------------------------------------- /src/theme/foundations/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/foundations/fonts.ts -------------------------------------------------------------------------------- /src/theme/foundations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/foundations/index.ts -------------------------------------------------------------------------------- /src/theme/foundations/shadows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/foundations/shadows.ts -------------------------------------------------------------------------------- /src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/index.ts -------------------------------------------------------------------------------- /src/theme/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/theme/styles.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomdohnal/twitter-fomo/HEAD/yarn.lock --------------------------------------------------------------------------------