├── .env.example ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_de.md ├── README_vi.md ├── README_zh.md ├── SECURITY.md ├── apps ├── .gitignore ├── auth-proxy │ ├── .env.example │ ├── package.json │ ├── routes │ │ └── [...auth].ts │ └── tsconfig.json └── nextjs │ ├── .eslintignore │ ├── .prettierignore │ ├── contentlayer.config.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ ├── favicon.ico │ ├── images │ │ ├── avatars │ │ │ ├── nok8s.jpeg │ │ │ └── saasfly-logo.svg │ │ ├── blog │ │ │ ├── blog-post-1.jpg │ │ │ ├── blog-post-2.jpg │ │ │ ├── blog-post-3.jpg │ │ │ └── blog-post-4.jpg │ │ └── noise.webp │ └── logo.svg │ ├── src │ ├── app │ │ ├── [lang] │ │ │ ├── (auth) │ │ │ │ ├── layout.tsx │ │ │ │ ├── login │ │ │ │ │ └── page.tsx │ │ │ │ └── register │ │ │ │ │ └── page.tsx │ │ │ ├── (dashboard) │ │ │ │ └── dashboard │ │ │ │ │ ├── billing │ │ │ │ │ ├── loading.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── subscription-form.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── loading.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── settings │ │ │ │ │ ├── loading.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── (docs) │ │ │ │ ├── docs │ │ │ │ │ ├── [[...slug]] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── layout.tsx │ │ │ │ └── layout.tsx │ │ │ ├── (editor) │ │ │ │ └── editor │ │ │ │ │ ├── cluster │ │ │ │ │ └── [clusterId] │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── layout.tsx │ │ │ └── (marketing) │ │ │ │ ├── blog │ │ │ │ ├── [...slug] │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── pricing │ │ │ │ ├── loading.tsx │ │ │ │ └── page.tsx │ │ ├── admin │ │ │ ├── (dashboard) │ │ │ │ └── dashboard │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── loading.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── login │ │ │ │ └── page.tsx │ │ ├── api │ │ │ ├── auth │ │ │ │ └── [...nextauth] │ │ │ │ │ └── route.ts │ │ │ ├── trpc │ │ │ │ └── edge │ │ │ │ │ └── [trpc] │ │ │ │ │ └── route.ts │ │ │ └── webhooks │ │ │ │ └── stripe │ │ │ │ └── route.ts │ │ ├── layout.tsx │ │ └── robots.ts │ ├── components │ │ ├── base-item.tsx │ │ ├── billing-form.tsx │ │ ├── blog-card.tsx │ │ ├── blog │ │ │ └── blog-posts.tsx │ │ ├── card-hover-effect.tsx │ │ ├── card-skeleton.tsx │ │ ├── code-copy.tsx │ │ ├── comments.tsx │ │ ├── content │ │ │ ├── mdx-card.tsx │ │ │ ├── mdx-components.tsx │ │ │ └── toc.tsx │ │ ├── docs │ │ │ ├── page-header.tsx │ │ │ ├── pager.tsx │ │ │ ├── search.tsx │ │ │ └── sidebar-nav.tsx │ │ ├── document-guide.tsx │ │ ├── empty-placeholder.tsx │ │ ├── features-card.tsx │ │ ├── features-grid.tsx │ │ ├── github-star.tsx │ │ ├── header.tsx │ │ ├── infiniteMovingCards.tsx │ │ ├── k8s │ │ │ ├── cluster-config.tsx │ │ │ ├── cluster-create-button.tsx │ │ │ ├── cluster-item.tsx │ │ │ └── cluster-operation.tsx │ │ ├── locale-change.tsx │ │ ├── main-nav.tsx │ │ ├── meteors-card.tsx │ │ ├── mobile-nav.tsx │ │ ├── modal-provider.tsx │ │ ├── modal.tsx │ │ ├── mode-toggle.tsx │ │ ├── nav.tsx │ │ ├── navbar.tsx │ │ ├── price │ │ │ ├── billing-form-button.tsx │ │ │ ├── pricing-cards.tsx │ │ │ └── pricing-faq.tsx │ │ ├── questions.tsx │ │ ├── rightside-marketing.tsx │ │ ├── shell.tsx │ │ ├── shimmer-button.tsx │ │ ├── sign-in-modal.tsx │ │ ├── site-footer.tsx │ │ ├── sparkles.tsx │ │ ├── tailwind-indicator.tsx │ │ ├── textGenerateEffect.tsx │ │ ├── theme-provider.tsx │ │ ├── theme-toggle.tsx │ │ ├── typewriterEffectSmooth.tsx │ │ ├── user-account-nav.tsx │ │ ├── user-auth-form.tsx │ │ ├── user-avatar.tsx │ │ ├── user-name-form.tsx │ │ ├── video-scroll.tsx │ │ ├── wobble.tsx │ │ └── word-reveal.tsx │ ├── config │ │ ├── dictionaries │ │ │ ├── en.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ └── zh.json │ │ ├── i18n-config.ts │ │ ├── ph-config.ts │ │ ├── price │ │ │ ├── price-data.ts │ │ │ └── price-faq-data.ts │ │ ├── providers.tsx │ │ ├── site.ts │ │ └── ui │ │ │ ├── dashboard.ts │ │ │ ├── docs.ts │ │ │ └── marketing.ts │ ├── content │ │ ├── authors │ │ │ └── nok8s.mdx │ │ ├── blog │ │ │ ├── deploying-next-apps.mdx │ │ │ ├── dynamic-routing-static-regeneration.mdx │ │ │ ├── preview-mode-headless-cms.mdx │ │ │ └── server-client-components.mdx │ │ ├── docs │ │ │ ├── documentation │ │ │ │ └── index.mdx │ │ │ ├── in-progress.mdx │ │ │ └── index.mdx │ │ └── guides │ │ │ └── using-next-auth-next-14.mdx │ ├── env.mjs │ ├── hooks │ │ ├── use-lock-body.ts │ │ ├── use-media-query.ts │ │ ├── use-mounted.ts │ │ ├── use-scroll.ts │ │ └── use-signin-modal.ts │ ├── lib │ │ ├── currency.ts │ │ ├── generate-pattern.ts │ │ ├── get-dictionary.ts │ │ ├── toc.ts │ │ ├── use-debounce.tsx │ │ ├── use-mounted.ts │ │ ├── utils.ts │ │ ├── validations │ │ │ └── user.ts │ │ └── zod-form.tsx │ ├── middleware.ts │ ├── styles │ │ ├── calsans.ttf │ │ ├── fonts │ │ │ ├── CalSans-SemiBold.ttf │ │ │ ├── CalSans-SemiBold.woff │ │ │ ├── CalSans-SemiBold.woff2 │ │ │ ├── Inter-Bold.ttf │ │ │ └── Inter-Regular.ttf │ │ ├── globals.css │ │ ├── mdx.css │ │ └── theme │ │ │ └── default.css │ ├── trpc │ │ ├── client.ts │ │ ├── server.ts │ │ └── shared.ts │ ├── types │ │ ├── index.d.ts │ │ ├── k8s.d.ts │ │ ├── meteors.d.ts │ │ └── next-auth.d.ts │ └── utils │ │ └── api.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── bun.lockb ├── package.json ├── packages ├── api │ ├── .eslintignore │ ├── package.json │ ├── src │ │ ├── edge.ts │ │ ├── env.mjs │ │ ├── index.ts │ │ ├── root.ts │ │ ├── router │ │ │ ├── auth.ts │ │ │ ├── customer.ts │ │ │ ├── health_check.ts │ │ │ ├── k8s.ts │ │ │ └── stripe.ts │ │ ├── transformer.ts │ │ └── trpc.ts │ └── tsconfig.json ├── auth │ ├── .eslintignore │ ├── .prettierignore │ ├── db.ts │ ├── env.mjs │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── common │ ├── .eslintignore │ ├── package.json │ ├── src │ │ ├── config │ │ │ └── site.ts │ │ ├── email.ts │ │ ├── emails │ │ │ └── magic-link-email.tsx │ │ ├── env.mjs │ │ ├── index.ts │ │ └── subscriptions.ts │ └── tsconfig.json ├── db │ ├── index.ts │ ├── package.json │ ├── prisma │ │ ├── README.md │ │ ├── enums.ts │ │ ├── schema.prisma │ │ └── types.ts │ └── tsconfig.json ├── stripe │ ├── .eslintignore │ ├── package.json │ ├── src │ │ ├── env.mjs │ │ ├── index.ts │ │ ├── plans.ts │ │ └── webhooks.ts │ └── tsconfig.json └── ui │ ├── .eslintignore │ ├── package.json │ ├── src │ ├── 3d-card.tsx │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── animated-gradient-text.tsx │ ├── animated-list.tsx │ ├── animated-tooltip.tsx │ ├── avatar.tsx │ ├── background-lines.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── callout.tsx │ ├── card-hover-effect.tsx │ ├── card-skeleton.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── colorful-text.tsx │ ├── command.tsx │ ├── container-scroll-animation.tsx │ ├── data-table.tsx │ ├── data │ │ └── globe.json │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── following-pointer.tsx │ ├── form.tsx │ ├── glowing-effect.tsx │ ├── icons.tsx │ ├── index.ts │ ├── infinite-moving-cards.tsx │ ├── input.tsx │ ├── label.tsx │ ├── marquee.tsx │ ├── meteors.tsx │ ├── popover.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── sheet.tsx │ ├── skeleton.tsx │ ├── sparkles.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── text-generate-effect.tsx │ ├── text-reveal.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── typewriter-effect.tsx │ ├── use-toast.tsx │ ├── utils │ │ └── cn.ts │ └── wobble-card.tsx │ ├── tailwind.config.ts │ └── tsconfig.json ├── saasfly-logo.svg ├── setupyourpay.png ├── tailwind.config.js ├── tooling ├── eslint-config │ ├── base.js │ ├── nextjs.js │ ├── package.json │ ├── react.js │ └── tsconfig.json ├── prettier-config │ ├── index.mjs │ ├── package.json │ └── tsconfig.json ├── tailwind-config │ ├── .eslintignore │ ├── index.ts │ ├── package.json │ ├── postcss.js │ └── tsconfig.json └── typescript-config │ ├── base.json │ └── package.json ├── turbo.json ├── turbo └── generators │ ├── config.ts │ └── templates │ ├── package.json.hbs │ └── tsconfig.json.hbs ├── twillot.png └── vercel.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/README.md -------------------------------------------------------------------------------- /README_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/README_de.md -------------------------------------------------------------------------------- /README_vi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/README_vi.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/README_zh.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/.gitignore -------------------------------------------------------------------------------- /apps/auth-proxy/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/auth-proxy/.env.example -------------------------------------------------------------------------------- /apps/auth-proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/auth-proxy/package.json -------------------------------------------------------------------------------- /apps/auth-proxy/routes/[...auth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/auth-proxy/routes/[...auth].ts -------------------------------------------------------------------------------- /apps/auth-proxy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/auth-proxy/tsconfig.json -------------------------------------------------------------------------------- /apps/nextjs/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/.eslintignore -------------------------------------------------------------------------------- /apps/nextjs/.prettierignore: -------------------------------------------------------------------------------- 1 | .next/ 2 | .contentlayer/ 3 | -------------------------------------------------------------------------------- /apps/nextjs/contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/contentlayer.config.ts -------------------------------------------------------------------------------- /apps/nextjs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/next.config.mjs -------------------------------------------------------------------------------- /apps/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/package.json -------------------------------------------------------------------------------- /apps/nextjs/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("@saasfly/tailwind-config/postcss"); 2 | -------------------------------------------------------------------------------- /apps/nextjs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/public/favicon.ico -------------------------------------------------------------------------------- /apps/nextjs/public/images/avatars/nok8s.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/public/images/avatars/nok8s.jpeg -------------------------------------------------------------------------------- /apps/nextjs/public/images/avatars/saasfly-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/public/images/avatars/saasfly-logo.svg -------------------------------------------------------------------------------- /apps/nextjs/public/images/blog/blog-post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/public/images/blog/blog-post-1.jpg -------------------------------------------------------------------------------- /apps/nextjs/public/images/blog/blog-post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/public/images/blog/blog-post-2.jpg -------------------------------------------------------------------------------- /apps/nextjs/public/images/blog/blog-post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/public/images/blog/blog-post-3.jpg -------------------------------------------------------------------------------- /apps/nextjs/public/images/blog/blog-post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/public/images/blog/blog-post-4.jpg -------------------------------------------------------------------------------- /apps/nextjs/public/images/noise.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/public/images/noise.webp -------------------------------------------------------------------------------- /apps/nextjs/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/public/logo.svg -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(auth)/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(auth)/login/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(auth)/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(auth)/register/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(dashboard)/dashboard/billing/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/billing/loading.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(dashboard)/dashboard/billing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/billing/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(dashboard)/dashboard/billing/subscription-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/billing/subscription-form.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(dashboard)/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(dashboard)/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/loading.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(dashboard)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(dashboard)/dashboard/settings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/settings/loading.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(dashboard)/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(docs)/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(docs)/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(docs)/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(docs)/docs/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(docs)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(docs)/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(editor)/editor/cluster/[clusterId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(editor)/editor/cluster/[clusterId]/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(editor)/editor/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(editor)/editor/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(marketing)/blog/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(marketing)/blog/[...slug]/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(marketing)/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(marketing)/blog/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(marketing)/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(marketing)/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(marketing)/pricing/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(marketing)/pricing/loading.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/[lang]/(marketing)/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/[lang]/(marketing)/pricing/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/admin/(dashboard)/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/admin/(dashboard)/dashboard/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/admin/(dashboard)/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/admin/(dashboard)/dashboard/loading.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/admin/(dashboard)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/admin/(dashboard)/dashboard/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/admin/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/admin/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/admin/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/admin/login/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /apps/nextjs/src/app/api/trpc/edge/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/api/trpc/edge/[trpc]/route.ts -------------------------------------------------------------------------------- /apps/nextjs/src/app/api/webhooks/stripe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/api/webhooks/stripe/route.ts -------------------------------------------------------------------------------- /apps/nextjs/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/app/robots.ts -------------------------------------------------------------------------------- /apps/nextjs/src/components/base-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/base-item.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/billing-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/billing-form.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/blog-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/blog-card.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/blog/blog-posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/blog/blog-posts.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/card-hover-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/card-hover-effect.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/card-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/card-skeleton.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/code-copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/code-copy.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/comments.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/content/mdx-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/content/mdx-card.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/content/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/content/mdx-components.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/content/toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/content/toc.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/docs/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/docs/page-header.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/docs/pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/docs/pager.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/docs/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/docs/search.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/docs/sidebar-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/docs/sidebar-nav.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/document-guide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/document-guide.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/empty-placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/empty-placeholder.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/features-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/features-card.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/features-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/features-grid.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/github-star.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/github-star.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/header.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/infiniteMovingCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/infiniteMovingCards.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/k8s/cluster-config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/k8s/cluster-config.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/k8s/cluster-create-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/k8s/cluster-create-button.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/k8s/cluster-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/k8s/cluster-item.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/k8s/cluster-operation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/k8s/cluster-operation.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/locale-change.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/locale-change.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/main-nav.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/meteors-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/meteors-card.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/mobile-nav.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/modal-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/modal-provider.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/modal.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/mode-toggle.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/nav.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/navbar.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/price/billing-form-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/price/billing-form-button.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/price/pricing-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/price/pricing-cards.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/price/pricing-faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/price/pricing-faq.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/questions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/questions.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/rightside-marketing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/rightside-marketing.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/shell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/shell.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/shimmer-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/shimmer-button.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/sign-in-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/sign-in-modal.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/site-footer.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/sparkles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/sparkles.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/textGenerateEffect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/textGenerateEffect.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/theme-toggle.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/typewriterEffectSmooth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/typewriterEffectSmooth.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/user-account-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/user-account-nav.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/user-auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/user-auth-form.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/user-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/user-avatar.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/user-name-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/user-name-form.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/video-scroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/video-scroll.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/wobble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/wobble.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/components/word-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/components/word-reveal.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/config/dictionaries/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/dictionaries/en.json -------------------------------------------------------------------------------- /apps/nextjs/src/config/dictionaries/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/dictionaries/ja.json -------------------------------------------------------------------------------- /apps/nextjs/src/config/dictionaries/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/dictionaries/ko.json -------------------------------------------------------------------------------- /apps/nextjs/src/config/dictionaries/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/dictionaries/zh.json -------------------------------------------------------------------------------- /apps/nextjs/src/config/i18n-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/i18n-config.ts -------------------------------------------------------------------------------- /apps/nextjs/src/config/ph-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/ph-config.ts -------------------------------------------------------------------------------- /apps/nextjs/src/config/price/price-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/price/price-data.ts -------------------------------------------------------------------------------- /apps/nextjs/src/config/price/price-faq-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/price/price-faq-data.ts -------------------------------------------------------------------------------- /apps/nextjs/src/config/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/providers.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/site.ts -------------------------------------------------------------------------------- /apps/nextjs/src/config/ui/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/ui/dashboard.ts -------------------------------------------------------------------------------- /apps/nextjs/src/config/ui/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/ui/docs.ts -------------------------------------------------------------------------------- /apps/nextjs/src/config/ui/marketing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/config/ui/marketing.ts -------------------------------------------------------------------------------- /apps/nextjs/src/content/authors/nok8s.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/content/authors/nok8s.mdx -------------------------------------------------------------------------------- /apps/nextjs/src/content/blog/deploying-next-apps.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/content/blog/deploying-next-apps.mdx -------------------------------------------------------------------------------- /apps/nextjs/src/content/blog/dynamic-routing-static-regeneration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/content/blog/dynamic-routing-static-regeneration.mdx -------------------------------------------------------------------------------- /apps/nextjs/src/content/blog/preview-mode-headless-cms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/content/blog/preview-mode-headless-cms.mdx -------------------------------------------------------------------------------- /apps/nextjs/src/content/blog/server-client-components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/content/blog/server-client-components.mdx -------------------------------------------------------------------------------- /apps/nextjs/src/content/docs/documentation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/content/docs/documentation/index.mdx -------------------------------------------------------------------------------- /apps/nextjs/src/content/docs/in-progress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/content/docs/in-progress.mdx -------------------------------------------------------------------------------- /apps/nextjs/src/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/content/docs/index.mdx -------------------------------------------------------------------------------- /apps/nextjs/src/content/guides/using-next-auth-next-14.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/content/guides/using-next-auth-next-14.mdx -------------------------------------------------------------------------------- /apps/nextjs/src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/env.mjs -------------------------------------------------------------------------------- /apps/nextjs/src/hooks/use-lock-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/hooks/use-lock-body.ts -------------------------------------------------------------------------------- /apps/nextjs/src/hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/hooks/use-media-query.ts -------------------------------------------------------------------------------- /apps/nextjs/src/hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/hooks/use-mounted.ts -------------------------------------------------------------------------------- /apps/nextjs/src/hooks/use-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/hooks/use-scroll.ts -------------------------------------------------------------------------------- /apps/nextjs/src/hooks/use-signin-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/hooks/use-signin-modal.ts -------------------------------------------------------------------------------- /apps/nextjs/src/lib/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/lib/currency.ts -------------------------------------------------------------------------------- /apps/nextjs/src/lib/generate-pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/lib/generate-pattern.ts -------------------------------------------------------------------------------- /apps/nextjs/src/lib/get-dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/lib/get-dictionary.ts -------------------------------------------------------------------------------- /apps/nextjs/src/lib/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/lib/toc.ts -------------------------------------------------------------------------------- /apps/nextjs/src/lib/use-debounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/lib/use-debounce.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/lib/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/lib/use-mounted.ts -------------------------------------------------------------------------------- /apps/nextjs/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/nextjs/src/lib/validations/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/lib/validations/user.ts -------------------------------------------------------------------------------- /apps/nextjs/src/lib/zod-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/lib/zod-form.tsx -------------------------------------------------------------------------------- /apps/nextjs/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/middleware.ts -------------------------------------------------------------------------------- /apps/nextjs/src/styles/calsans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/styles/calsans.ttf -------------------------------------------------------------------------------- /apps/nextjs/src/styles/fonts/CalSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/styles/fonts/CalSans-SemiBold.ttf -------------------------------------------------------------------------------- /apps/nextjs/src/styles/fonts/CalSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/styles/fonts/CalSans-SemiBold.woff -------------------------------------------------------------------------------- /apps/nextjs/src/styles/fonts/CalSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/styles/fonts/CalSans-SemiBold.woff2 -------------------------------------------------------------------------------- /apps/nextjs/src/styles/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/styles/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /apps/nextjs/src/styles/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/styles/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /apps/nextjs/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/styles/globals.css -------------------------------------------------------------------------------- /apps/nextjs/src/styles/mdx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/styles/mdx.css -------------------------------------------------------------------------------- /apps/nextjs/src/styles/theme/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/styles/theme/default.css -------------------------------------------------------------------------------- /apps/nextjs/src/trpc/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/trpc/client.ts -------------------------------------------------------------------------------- /apps/nextjs/src/trpc/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/trpc/server.ts -------------------------------------------------------------------------------- /apps/nextjs/src/trpc/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/trpc/shared.ts -------------------------------------------------------------------------------- /apps/nextjs/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/types/index.d.ts -------------------------------------------------------------------------------- /apps/nextjs/src/types/k8s.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/types/k8s.d.ts -------------------------------------------------------------------------------- /apps/nextjs/src/types/meteors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/types/meteors.d.ts -------------------------------------------------------------------------------- /apps/nextjs/src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /apps/nextjs/src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/src/utils/api.ts -------------------------------------------------------------------------------- /apps/nextjs/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/tailwind.config.ts -------------------------------------------------------------------------------- /apps/nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/apps/nextjs/tsconfig.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/bun.lockb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/package.json -------------------------------------------------------------------------------- /packages/api/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/.eslintignore -------------------------------------------------------------------------------- /packages/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/package.json -------------------------------------------------------------------------------- /packages/api/src/edge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/edge.ts -------------------------------------------------------------------------------- /packages/api/src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/env.mjs -------------------------------------------------------------------------------- /packages/api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/index.ts -------------------------------------------------------------------------------- /packages/api/src/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/root.ts -------------------------------------------------------------------------------- /packages/api/src/router/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/router/auth.ts -------------------------------------------------------------------------------- /packages/api/src/router/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/router/customer.ts -------------------------------------------------------------------------------- /packages/api/src/router/health_check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/router/health_check.ts -------------------------------------------------------------------------------- /packages/api/src/router/k8s.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/router/k8s.ts -------------------------------------------------------------------------------- /packages/api/src/router/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/router/stripe.ts -------------------------------------------------------------------------------- /packages/api/src/transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/transformer.ts -------------------------------------------------------------------------------- /packages/api/src/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/src/trpc.ts -------------------------------------------------------------------------------- /packages/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/api/tsconfig.json -------------------------------------------------------------------------------- /packages/auth/.eslintignore: -------------------------------------------------------------------------------- 1 | auth-rest-adapter.ts 2 | index.ts -------------------------------------------------------------------------------- /packages/auth/.prettierignore: -------------------------------------------------------------------------------- 1 | #auth-rest-adapter.ts 2 | .next/ 3 | .contentlayer -------------------------------------------------------------------------------- /packages/auth/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/auth/db.ts -------------------------------------------------------------------------------- /packages/auth/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/auth/env.mjs -------------------------------------------------------------------------------- /packages/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/auth/index.ts -------------------------------------------------------------------------------- /packages/auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/auth/package.json -------------------------------------------------------------------------------- /packages/auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/auth/tsconfig.json -------------------------------------------------------------------------------- /packages/common/.eslintignore: -------------------------------------------------------------------------------- 1 | src/subscriptions.ts -------------------------------------------------------------------------------- /packages/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/common/package.json -------------------------------------------------------------------------------- /packages/common/src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/common/src/config/site.ts -------------------------------------------------------------------------------- /packages/common/src/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/common/src/email.ts -------------------------------------------------------------------------------- /packages/common/src/emails/magic-link-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/common/src/emails/magic-link-email.tsx -------------------------------------------------------------------------------- /packages/common/src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/common/src/env.mjs -------------------------------------------------------------------------------- /packages/common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/common/src/index.ts -------------------------------------------------------------------------------- /packages/common/src/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/common/src/subscriptions.ts -------------------------------------------------------------------------------- /packages/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/common/tsconfig.json -------------------------------------------------------------------------------- /packages/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/db/index.ts -------------------------------------------------------------------------------- /packages/db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/db/package.json -------------------------------------------------------------------------------- /packages/db/prisma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/db/prisma/README.md -------------------------------------------------------------------------------- /packages/db/prisma/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/db/prisma/enums.ts -------------------------------------------------------------------------------- /packages/db/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/db/prisma/schema.prisma -------------------------------------------------------------------------------- /packages/db/prisma/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/db/prisma/types.ts -------------------------------------------------------------------------------- /packages/db/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/db/tsconfig.json -------------------------------------------------------------------------------- /packages/stripe/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/stripe/.eslintignore -------------------------------------------------------------------------------- /packages/stripe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/stripe/package.json -------------------------------------------------------------------------------- /packages/stripe/src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/stripe/src/env.mjs -------------------------------------------------------------------------------- /packages/stripe/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/stripe/src/index.ts -------------------------------------------------------------------------------- /packages/stripe/src/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/stripe/src/plans.ts -------------------------------------------------------------------------------- /packages/stripe/src/webhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/stripe/src/webhooks.ts -------------------------------------------------------------------------------- /packages/stripe/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/stripe/tsconfig.json -------------------------------------------------------------------------------- /packages/ui/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/.eslintignore -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/3d-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/3d-card.tsx -------------------------------------------------------------------------------- /packages/ui/src/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/accordion.tsx -------------------------------------------------------------------------------- /packages/ui/src/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/alert-dialog.tsx -------------------------------------------------------------------------------- /packages/ui/src/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/alert.tsx -------------------------------------------------------------------------------- /packages/ui/src/animated-gradient-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/animated-gradient-text.tsx -------------------------------------------------------------------------------- /packages/ui/src/animated-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/animated-list.tsx -------------------------------------------------------------------------------- /packages/ui/src/animated-tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/animated-tooltip.tsx -------------------------------------------------------------------------------- /packages/ui/src/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/avatar.tsx -------------------------------------------------------------------------------- /packages/ui/src/background-lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/background-lines.tsx -------------------------------------------------------------------------------- /packages/ui/src/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/button.tsx -------------------------------------------------------------------------------- /packages/ui/src/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/calendar.tsx -------------------------------------------------------------------------------- /packages/ui/src/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/callout.tsx -------------------------------------------------------------------------------- /packages/ui/src/card-hover-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/card-hover-effect.tsx -------------------------------------------------------------------------------- /packages/ui/src/card-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/card-skeleton.tsx -------------------------------------------------------------------------------- /packages/ui/src/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/card.tsx -------------------------------------------------------------------------------- /packages/ui/src/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/checkbox.tsx -------------------------------------------------------------------------------- /packages/ui/src/colorful-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/colorful-text.tsx -------------------------------------------------------------------------------- /packages/ui/src/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/command.tsx -------------------------------------------------------------------------------- /packages/ui/src/container-scroll-animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/container-scroll-animation.tsx -------------------------------------------------------------------------------- /packages/ui/src/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/data-table.tsx -------------------------------------------------------------------------------- /packages/ui/src/data/globe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/data/globe.json -------------------------------------------------------------------------------- /packages/ui/src/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/dialog.tsx -------------------------------------------------------------------------------- /packages/ui/src/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/dropdown-menu.tsx -------------------------------------------------------------------------------- /packages/ui/src/following-pointer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/following-pointer.tsx -------------------------------------------------------------------------------- /packages/ui/src/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/form.tsx -------------------------------------------------------------------------------- /packages/ui/src/glowing-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/glowing-effect.tsx -------------------------------------------------------------------------------- /packages/ui/src/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/icons.tsx -------------------------------------------------------------------------------- /packages/ui/src/index.ts: -------------------------------------------------------------------------------- 1 | export { cn } from "./utils/cn"; 2 | -------------------------------------------------------------------------------- /packages/ui/src/infinite-moving-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/infinite-moving-cards.tsx -------------------------------------------------------------------------------- /packages/ui/src/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/input.tsx -------------------------------------------------------------------------------- /packages/ui/src/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/label.tsx -------------------------------------------------------------------------------- /packages/ui/src/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/marquee.tsx -------------------------------------------------------------------------------- /packages/ui/src/meteors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/meteors.tsx -------------------------------------------------------------------------------- /packages/ui/src/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/popover.tsx -------------------------------------------------------------------------------- /packages/ui/src/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/scroll-area.tsx -------------------------------------------------------------------------------- /packages/ui/src/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/select.tsx -------------------------------------------------------------------------------- /packages/ui/src/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/sheet.tsx -------------------------------------------------------------------------------- /packages/ui/src/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/skeleton.tsx -------------------------------------------------------------------------------- /packages/ui/src/sparkles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/sparkles.tsx -------------------------------------------------------------------------------- /packages/ui/src/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/switch.tsx -------------------------------------------------------------------------------- /packages/ui/src/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/table.tsx -------------------------------------------------------------------------------- /packages/ui/src/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/tabs.tsx -------------------------------------------------------------------------------- /packages/ui/src/text-generate-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/text-generate-effect.tsx -------------------------------------------------------------------------------- /packages/ui/src/text-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/text-reveal.tsx -------------------------------------------------------------------------------- /packages/ui/src/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/toast.tsx -------------------------------------------------------------------------------- /packages/ui/src/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/toaster.tsx -------------------------------------------------------------------------------- /packages/ui/src/typewriter-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/typewriter-effect.tsx -------------------------------------------------------------------------------- /packages/ui/src/use-toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/use-toast.tsx -------------------------------------------------------------------------------- /packages/ui/src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/utils/cn.ts -------------------------------------------------------------------------------- /packages/ui/src/wobble-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/src/wobble-card.tsx -------------------------------------------------------------------------------- /packages/ui/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/tailwind.config.ts -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /saasfly-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/saasfly-logo.svg -------------------------------------------------------------------------------- /setupyourpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/setupyourpay.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tooling/eslint-config/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/eslint-config/base.js -------------------------------------------------------------------------------- /tooling/eslint-config/nextjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/eslint-config/nextjs.js -------------------------------------------------------------------------------- /tooling/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/eslint-config/package.json -------------------------------------------------------------------------------- /tooling/eslint-config/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/eslint-config/react.js -------------------------------------------------------------------------------- /tooling/eslint-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/eslint-config/tsconfig.json -------------------------------------------------------------------------------- /tooling/prettier-config/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/prettier-config/index.mjs -------------------------------------------------------------------------------- /tooling/prettier-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/prettier-config/package.json -------------------------------------------------------------------------------- /tooling/prettier-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/prettier-config/tsconfig.json -------------------------------------------------------------------------------- /tooling/tailwind-config/.eslintignore: -------------------------------------------------------------------------------- 1 | index.ts -------------------------------------------------------------------------------- /tooling/tailwind-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/tailwind-config/index.ts -------------------------------------------------------------------------------- /tooling/tailwind-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/tailwind-config/package.json -------------------------------------------------------------------------------- /tooling/tailwind-config/postcss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/tailwind-config/postcss.js -------------------------------------------------------------------------------- /tooling/tailwind-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/tailwind-config/tsconfig.json -------------------------------------------------------------------------------- /tooling/typescript-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/typescript-config/base.json -------------------------------------------------------------------------------- /tooling/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/tooling/typescript-config/package.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/turbo.json -------------------------------------------------------------------------------- /turbo/generators/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/turbo/generators/config.ts -------------------------------------------------------------------------------- /turbo/generators/templates/package.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/turbo/generators/templates/package.json.hbs -------------------------------------------------------------------------------- /turbo/generators/templates/tsconfig.json.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/turbo/generators/templates/tsconfig.json.hbs -------------------------------------------------------------------------------- /twillot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/twillot.png -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/saasfly/HEAD/vercel.json --------------------------------------------------------------------------------