├── .gitignore ├── README.md ├── components.json ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── ads.txt ├── assets │ ├── cards │ │ ├── cover.png │ │ ├── covers-versions │ │ │ ├── cover.png │ │ │ ├── cover2.png │ │ │ ├── cover3.png │ │ │ └── cover4.png │ │ ├── generating.png │ │ └── sharing.png │ └── tweeets.png ├── logo-bg.png ├── logo.png └── tweeets-legal.png ├── src ├── app │ ├── (legal) │ │ ├── privacy │ │ │ └── page.tsx │ │ └── tos │ │ │ └── page.tsx │ ├── api │ │ ├── blog │ │ │ ├── comments │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── feedback │ │ │ ├── feedback.tsx │ │ │ └── route.ts │ │ ├── generate │ │ │ └── route.ts │ │ ├── save │ │ │ └── route.ts │ │ ├── share │ │ │ └── route.ts │ │ ├── stats │ │ │ └── route.ts │ │ ├── stripe │ │ │ ├── create-checkout-session │ │ │ │ └── route.ts │ │ │ ├── credits │ │ │ │ └── route.ts │ │ │ └── transactions │ │ │ │ └── route.ts │ │ └── user │ │ │ └── route.ts │ ├── app │ │ ├── credits.tsx │ │ ├── generate.tsx │ │ ├── generator.tsx │ │ ├── page.tsx │ │ ├── tweet.tsx │ │ ├── tweets-classed.tsx │ │ └── tweets.tsx │ ├── auth │ │ └── callback │ │ │ └── route.ts │ ├── billing │ │ ├── page.tsx │ │ ├── payment.tsx │ │ └── tr-loading.tsx │ ├── blog │ │ ├── [slug] │ │ │ ├── lib │ │ │ │ ├── comments.tsx │ │ │ │ └── content.tsx │ │ │ └── page.tsx │ │ ├── lib │ │ │ ├── card.tsx │ │ │ └── cards.tsx │ │ └── page.tsx │ ├── favicon.ico │ ├── layout.tsx │ ├── page.tsx │ └── tailwind.css ├── lib │ ├── components │ │ ├── alert-description.tsx │ │ ├── markdown │ │ │ ├── README.md │ │ │ ├── elements │ │ │ │ ├── md-code │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── md-code.tsx │ │ │ │ │ └── md-code.type.ts │ │ │ │ └── md-heading │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── md-heading.tsx │ │ │ │ │ └── md-heading.type.ts │ │ │ ├── index.ts │ │ │ ├── markdown-element │ │ │ │ ├── index.ts │ │ │ │ ├── markdown-element.tsx │ │ │ │ └── markdown-element.type.ts │ │ │ ├── markdown.tsx │ │ │ └── markdown.type.ts │ │ ├── navbar │ │ │ ├── feedback.tsx │ │ │ ├── index.ts │ │ │ ├── login-with-twitter.tsx │ │ │ └── navbar.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card-spotlight.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── popover.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── textarea.tsx │ │ │ ├── theme-provider.tsx │ │ │ ├── title │ │ │ ├── no-sub.tsx │ │ │ └── with-sub.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── toggle.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── configs │ │ ├── generation │ │ │ ├── ideas.ts │ │ │ ├── langs.ts │ │ │ ├── tweet.ts │ │ │ └── types.ts │ │ └── metadata │ │ │ ├── index.ts │ │ │ └── metadata.config.ts │ ├── contexts │ │ └── UserProvider.tsx │ ├── store │ │ └── load-tweet │ │ │ └── load-tweet.store.ts │ ├── utils.ts │ └── utils │ │ ├── component │ │ ├── component.ts │ │ └── index.ts │ │ ├── database │ │ ├── index.ts │ │ └── prisma.ts │ │ ├── fetcher.ts │ │ ├── openai.ts │ │ ├── stream.ts │ │ ├── stripe.ts │ │ ├── stripe.utils.ts │ │ └── supabase.ts └── middleware.ts ├── tailwind.config.ts ├── tsconfig.json ├── vercel.json └── vitest.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-6330177306711077, DIRECT, f08c47fec0942fa0 2 | -------------------------------------------------------------------------------- /public/assets/cards/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/assets/cards/cover.png -------------------------------------------------------------------------------- /public/assets/cards/covers-versions/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/assets/cards/covers-versions/cover.png -------------------------------------------------------------------------------- /public/assets/cards/covers-versions/cover2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/assets/cards/covers-versions/cover2.png -------------------------------------------------------------------------------- /public/assets/cards/covers-versions/cover3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/assets/cards/covers-versions/cover3.png -------------------------------------------------------------------------------- /public/assets/cards/covers-versions/cover4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/assets/cards/covers-versions/cover4.png -------------------------------------------------------------------------------- /public/assets/cards/generating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/assets/cards/generating.png -------------------------------------------------------------------------------- /public/assets/cards/sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/assets/cards/sharing.png -------------------------------------------------------------------------------- /public/assets/tweeets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/assets/tweeets.png -------------------------------------------------------------------------------- /public/logo-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/logo-bg.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/tweeets-legal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/public/tweeets-legal.png -------------------------------------------------------------------------------- /src/app/(legal)/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/(legal)/privacy/page.tsx -------------------------------------------------------------------------------- /src/app/(legal)/tos/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/(legal)/tos/page.tsx -------------------------------------------------------------------------------- /src/app/api/blog/comments/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/blog/comments/route.ts -------------------------------------------------------------------------------- /src/app/api/blog/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/blog/route.ts -------------------------------------------------------------------------------- /src/app/api/feedback/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/feedback/feedback.tsx -------------------------------------------------------------------------------- /src/app/api/feedback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/feedback/route.ts -------------------------------------------------------------------------------- /src/app/api/generate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/generate/route.ts -------------------------------------------------------------------------------- /src/app/api/save/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/save/route.ts -------------------------------------------------------------------------------- /src/app/api/share/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/share/route.ts -------------------------------------------------------------------------------- /src/app/api/stats/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/stats/route.ts -------------------------------------------------------------------------------- /src/app/api/stripe/create-checkout-session/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/stripe/create-checkout-session/route.ts -------------------------------------------------------------------------------- /src/app/api/stripe/credits/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/stripe/credits/route.ts -------------------------------------------------------------------------------- /src/app/api/stripe/transactions/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/stripe/transactions/route.ts -------------------------------------------------------------------------------- /src/app/api/user/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/api/user/route.ts -------------------------------------------------------------------------------- /src/app/app/credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/app/credits.tsx -------------------------------------------------------------------------------- /src/app/app/generate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/app/generate.tsx -------------------------------------------------------------------------------- /src/app/app/generator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/app/generator.tsx -------------------------------------------------------------------------------- /src/app/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/app/page.tsx -------------------------------------------------------------------------------- /src/app/app/tweet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/app/tweet.tsx -------------------------------------------------------------------------------- /src/app/app/tweets-classed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/app/tweets-classed.tsx -------------------------------------------------------------------------------- /src/app/app/tweets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/app/tweets.tsx -------------------------------------------------------------------------------- /src/app/auth/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/auth/callback/route.ts -------------------------------------------------------------------------------- /src/app/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/billing/page.tsx -------------------------------------------------------------------------------- /src/app/billing/payment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/billing/payment.tsx -------------------------------------------------------------------------------- /src/app/billing/tr-loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/billing/tr-loading.tsx -------------------------------------------------------------------------------- /src/app/blog/[slug]/lib/comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/blog/[slug]/lib/comments.tsx -------------------------------------------------------------------------------- /src/app/blog/[slug]/lib/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/blog/[slug]/lib/content.tsx -------------------------------------------------------------------------------- /src/app/blog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/blog/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/blog/lib/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/blog/lib/card.tsx -------------------------------------------------------------------------------- /src/app/blog/lib/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/blog/lib/cards.tsx -------------------------------------------------------------------------------- /src/app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/blog/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/app/tailwind.css -------------------------------------------------------------------------------- /src/lib/components/alert-description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/alert-description.tsx -------------------------------------------------------------------------------- /src/lib/components/markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/markdown/README.md -------------------------------------------------------------------------------- /src/lib/components/markdown/elements/md-code/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./md-code"; -------------------------------------------------------------------------------- /src/lib/components/markdown/elements/md-code/md-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/markdown/elements/md-code/md-code.tsx -------------------------------------------------------------------------------- /src/lib/components/markdown/elements/md-code/md-code.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/markdown/elements/md-code/md-code.type.ts -------------------------------------------------------------------------------- /src/lib/components/markdown/elements/md-heading/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./md-heading"; -------------------------------------------------------------------------------- /src/lib/components/markdown/elements/md-heading/md-heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/markdown/elements/md-heading/md-heading.tsx -------------------------------------------------------------------------------- /src/lib/components/markdown/elements/md-heading/md-heading.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/markdown/elements/md-heading/md-heading.type.ts -------------------------------------------------------------------------------- /src/lib/components/markdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./markdown"; -------------------------------------------------------------------------------- /src/lib/components/markdown/markdown-element/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./markdown-element"; -------------------------------------------------------------------------------- /src/lib/components/markdown/markdown-element/markdown-element.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/markdown/markdown-element/markdown-element.tsx -------------------------------------------------------------------------------- /src/lib/components/markdown/markdown-element/markdown-element.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/markdown/markdown-element/markdown-element.type.ts -------------------------------------------------------------------------------- /src/lib/components/markdown/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/markdown/markdown.tsx -------------------------------------------------------------------------------- /src/lib/components/markdown/markdown.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/markdown/markdown.type.ts -------------------------------------------------------------------------------- /src/lib/components/navbar/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/navbar/feedback.tsx -------------------------------------------------------------------------------- /src/lib/components/navbar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "."; -------------------------------------------------------------------------------- /src/lib/components/navbar/login-with-twitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/navbar/login-with-twitter.tsx -------------------------------------------------------------------------------- /src/lib/components/navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/navbar/navbar.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/button.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/card-spotlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/card-spotlight.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/card.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/command.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/form.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/input.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/label.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/select.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/theme-provider.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/title/no-sub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/title/no-sub.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/title/with-sub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/title/with-sub.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/lib/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/lib/configs/generation/ideas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/configs/generation/ideas.ts -------------------------------------------------------------------------------- /src/lib/configs/generation/langs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/configs/generation/langs.ts -------------------------------------------------------------------------------- /src/lib/configs/generation/tweet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/configs/generation/tweet.ts -------------------------------------------------------------------------------- /src/lib/configs/generation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/configs/generation/types.ts -------------------------------------------------------------------------------- /src/lib/configs/metadata/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./metadata.config"; -------------------------------------------------------------------------------- /src/lib/configs/metadata/metadata.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/configs/metadata/metadata.config.ts -------------------------------------------------------------------------------- /src/lib/contexts/UserProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/contexts/UserProvider.tsx -------------------------------------------------------------------------------- /src/lib/store/load-tweet/load-tweet.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/store/load-tweet/load-tweet.store.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/utils/component/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/utils/component/component.ts -------------------------------------------------------------------------------- /src/lib/utils/component/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./component"; -------------------------------------------------------------------------------- /src/lib/utils/database/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./prisma"; -------------------------------------------------------------------------------- /src/lib/utils/database/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/utils/database/prisma.ts -------------------------------------------------------------------------------- /src/lib/utils/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/utils/fetcher.ts -------------------------------------------------------------------------------- /src/lib/utils/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/utils/openai.ts -------------------------------------------------------------------------------- /src/lib/utils/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/utils/stream.ts -------------------------------------------------------------------------------- /src/lib/utils/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/utils/stripe.ts -------------------------------------------------------------------------------- /src/lib/utils/stripe.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/utils/stripe.utils.ts -------------------------------------------------------------------------------- /src/lib/utils/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/lib/utils/supabase.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "crons": [] 3 | } -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steellgold/tweeets/HEAD/vitest.config.ts --------------------------------------------------------------------------------