├── .env ├── .env.production ├── .gitignore ├── README.md ├── components.json ├── messages └── en.json ├── next-sitemap.config.js ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── llms.txt ├── logo.jpeg ├── resources │ ├── example1.mp4 │ ├── example1.webp │ ├── example2.mp4 │ ├── example2.webp │ ├── example3.png │ ├── example3.webm │ ├── example3.webp │ ├── example5.mp4 │ ├── example5.webp │ └── text-to-image.jpg ├── robots.txt └── sitemap.xml ├── src ├── app │ ├── [locale] │ │ ├── (free) │ │ │ ├── dashboard │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── legal │ │ │ │ ├── privacy-policy │ │ │ │ │ └── page.tsx │ │ │ │ └── terms-of-service │ │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── pricing │ │ │ │ └── page.tsx │ │ │ └── text-to-image │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── providers.tsx │ ├── api │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── checkout │ │ │ └── route.ts │ │ ├── effect_result │ │ │ ├── count_all │ │ │ │ └── route.ts │ │ │ ├── list_by_user_id │ │ │ │ └── route.ts │ │ │ └── update │ │ │ │ └── route.ts │ │ ├── predictions │ │ │ ├── [id] │ │ │ │ └── route.ts │ │ │ ├── img_to_video │ │ │ │ └── route.ts │ │ │ └── text_to_image │ │ │ │ └── route.ts │ │ ├── r2 │ │ │ └── upload │ │ │ │ └── route.ts │ │ ├── user │ │ │ ├── check_pro_status │ │ │ │ └── route.ts │ │ │ └── get_user_subscription_info │ │ │ │ └── route.ts │ │ └── webhook │ │ │ ├── replicate │ │ │ └── route.ts │ │ │ └── stripe │ │ │ └── route.ts │ ├── globals.css │ ├── layout.tsx │ ├── not-found.tsx │ └── page.tsx ├── backend │ ├── config │ │ └── db.ts │ ├── lib │ │ └── r2.ts │ ├── models │ │ ├── credit_usage.ts │ │ ├── effect.ts │ │ ├── effect_result.ts │ │ ├── payment_history.ts │ │ ├── subscription_plan.ts │ │ ├── user.ts │ │ └── user_subscription.ts │ ├── service │ │ ├── credit_usage.ts │ │ ├── effect.ts │ │ ├── effect_result.ts │ │ ├── generate-_check.ts │ │ ├── payment_history.ts │ │ ├── subscription_plan.ts │ │ ├── user.ts │ │ └── user_subscription.ts │ ├── sql │ │ └── init.sql │ ├── type │ │ ├── domain │ │ │ ├── effect_result_info.ts │ │ │ ├── replicate.ts │ │ │ └── user_subscription_info.ts │ │ ├── enum │ │ │ ├── payment_status_enum.ts │ │ │ ├── response_code_enum.ts │ │ │ └── user_subscription_enum.ts │ │ └── type.ts │ └── utils │ │ ├── genId.tsx │ │ └── index.tsx ├── components │ ├── button │ │ ├── delete-button.tsx │ │ ├── login-button.tsx │ │ └── user-button.tsx │ ├── landingpage │ │ ├── Testimonials │ │ │ ├── data.tsx │ │ │ ├── scrolling-banner.tsx │ │ │ ├── testimonials.tsx │ │ │ └── user-review.tsx │ │ ├── credit-info.tsx │ │ ├── cta.tsx │ │ ├── example.tsx │ │ ├── faq.tsx │ │ ├── feature.tsx │ │ ├── how.tsx │ │ ├── top.tsx │ │ └── what.tsx │ ├── layout │ │ ├── footer │ │ │ └── footer.tsx │ │ └── navbar │ │ │ └── navbar.tsx │ ├── locales.tsx │ ├── price │ │ ├── app.tsx │ │ ├── pricing-tiers.tsx │ │ └── pricing-types.tsx │ ├── replicate │ │ ├── common-logic │ │ │ └── response.tsx │ │ ├── img-to-video │ │ │ ├── worker-wraper.tsx │ │ │ └── worker.tsx │ │ └── text-to-image │ │ │ ├── img-output.tsx │ │ │ ├── worker-wraper.tsx │ │ │ └── worker.tsx │ └── seo │ │ └── seo.tsx ├── config │ ├── colors.json │ ├── domain.ts │ ├── fonts.ts │ └── site.ts ├── contexts │ ├── app.tsx │ └── theme.tsx ├── i18n │ ├── request.ts │ └── routing.ts ├── lib │ ├── colors.ts │ └── utils.ts ├── middleware.ts ├── providers │ └── session.tsx └── types │ └── index.ts ├── tailwind.config.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/.env -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/.env.production -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/components.json -------------------------------------------------------------------------------- /messages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/messages/en.json -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/llms.txt -------------------------------------------------------------------------------- /public/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/logo.jpeg -------------------------------------------------------------------------------- /public/resources/example1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/example1.mp4 -------------------------------------------------------------------------------- /public/resources/example1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/example1.webp -------------------------------------------------------------------------------- /public/resources/example2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/example2.mp4 -------------------------------------------------------------------------------- /public/resources/example2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/example2.webp -------------------------------------------------------------------------------- /public/resources/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/example3.png -------------------------------------------------------------------------------- /public/resources/example3.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/example3.webm -------------------------------------------------------------------------------- /public/resources/example3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/example3.webp -------------------------------------------------------------------------------- /public/resources/example5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/example5.mp4 -------------------------------------------------------------------------------- /public/resources/example5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/example5.webp -------------------------------------------------------------------------------- /public/resources/text-to-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/resources/text-to-image.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /src/app/[locale]/(free)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/[locale]/(free)/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(free)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/[locale]/(free)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(free)/legal/privacy-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/[locale]/(free)/legal/privacy-policy/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(free)/legal/terms-of-service/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/[locale]/(free)/legal/terms-of-service/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(free)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/[locale]/(free)/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(free)/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/[locale]/(free)/pricing/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(free)/text-to-image/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/[locale]/(free)/text-to-image/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/[locale]/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/[locale]/providers.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/checkout/route.ts -------------------------------------------------------------------------------- /src/app/api/effect_result/count_all/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/effect_result/count_all/route.ts -------------------------------------------------------------------------------- /src/app/api/effect_result/list_by_user_id/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/effect_result/list_by_user_id/route.ts -------------------------------------------------------------------------------- /src/app/api/effect_result/update/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/effect_result/update/route.ts -------------------------------------------------------------------------------- /src/app/api/predictions/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/predictions/[id]/route.ts -------------------------------------------------------------------------------- /src/app/api/predictions/img_to_video/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/predictions/img_to_video/route.ts -------------------------------------------------------------------------------- /src/app/api/predictions/text_to_image/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/predictions/text_to_image/route.ts -------------------------------------------------------------------------------- /src/app/api/r2/upload/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/r2/upload/route.ts -------------------------------------------------------------------------------- /src/app/api/user/check_pro_status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/user/check_pro_status/route.ts -------------------------------------------------------------------------------- /src/app/api/user/get_user_subscription_info/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/user/get_user_subscription_info/route.ts -------------------------------------------------------------------------------- /src/app/api/webhook/replicate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/webhook/replicate/route.ts -------------------------------------------------------------------------------- /src/app/api/webhook/stripe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/api/webhook/stripe/route.ts -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/backend/config/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/config/db.ts -------------------------------------------------------------------------------- /src/backend/lib/r2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/lib/r2.ts -------------------------------------------------------------------------------- /src/backend/models/credit_usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/models/credit_usage.ts -------------------------------------------------------------------------------- /src/backend/models/effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/models/effect.ts -------------------------------------------------------------------------------- /src/backend/models/effect_result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/models/effect_result.ts -------------------------------------------------------------------------------- /src/backend/models/payment_history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/models/payment_history.ts -------------------------------------------------------------------------------- /src/backend/models/subscription_plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/models/subscription_plan.ts -------------------------------------------------------------------------------- /src/backend/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/models/user.ts -------------------------------------------------------------------------------- /src/backend/models/user_subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/models/user_subscription.ts -------------------------------------------------------------------------------- /src/backend/service/credit_usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/service/credit_usage.ts -------------------------------------------------------------------------------- /src/backend/service/effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/service/effect.ts -------------------------------------------------------------------------------- /src/backend/service/effect_result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/service/effect_result.ts -------------------------------------------------------------------------------- /src/backend/service/generate-_check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/service/generate-_check.ts -------------------------------------------------------------------------------- /src/backend/service/payment_history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/service/payment_history.ts -------------------------------------------------------------------------------- /src/backend/service/subscription_plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/service/subscription_plan.ts -------------------------------------------------------------------------------- /src/backend/service/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/service/user.ts -------------------------------------------------------------------------------- /src/backend/service/user_subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/service/user_subscription.ts -------------------------------------------------------------------------------- /src/backend/sql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/sql/init.sql -------------------------------------------------------------------------------- /src/backend/type/domain/effect_result_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/type/domain/effect_result_info.ts -------------------------------------------------------------------------------- /src/backend/type/domain/replicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/type/domain/replicate.ts -------------------------------------------------------------------------------- /src/backend/type/domain/user_subscription_info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/type/domain/user_subscription_info.ts -------------------------------------------------------------------------------- /src/backend/type/enum/payment_status_enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/type/enum/payment_status_enum.ts -------------------------------------------------------------------------------- /src/backend/type/enum/response_code_enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/type/enum/response_code_enum.ts -------------------------------------------------------------------------------- /src/backend/type/enum/user_subscription_enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/type/enum/user_subscription_enum.ts -------------------------------------------------------------------------------- /src/backend/type/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/type/type.ts -------------------------------------------------------------------------------- /src/backend/utils/genId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/utils/genId.tsx -------------------------------------------------------------------------------- /src/backend/utils/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/backend/utils/index.tsx -------------------------------------------------------------------------------- /src/components/button/delete-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/button/delete-button.tsx -------------------------------------------------------------------------------- /src/components/button/login-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/button/login-button.tsx -------------------------------------------------------------------------------- /src/components/button/user-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/button/user-button.tsx -------------------------------------------------------------------------------- /src/components/landingpage/Testimonials/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/Testimonials/data.tsx -------------------------------------------------------------------------------- /src/components/landingpage/Testimonials/scrolling-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/Testimonials/scrolling-banner.tsx -------------------------------------------------------------------------------- /src/components/landingpage/Testimonials/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/Testimonials/testimonials.tsx -------------------------------------------------------------------------------- /src/components/landingpage/Testimonials/user-review.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/Testimonials/user-review.tsx -------------------------------------------------------------------------------- /src/components/landingpage/credit-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/credit-info.tsx -------------------------------------------------------------------------------- /src/components/landingpage/cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/cta.tsx -------------------------------------------------------------------------------- /src/components/landingpage/example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/example.tsx -------------------------------------------------------------------------------- /src/components/landingpage/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/faq.tsx -------------------------------------------------------------------------------- /src/components/landingpage/feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/feature.tsx -------------------------------------------------------------------------------- /src/components/landingpage/how.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/how.tsx -------------------------------------------------------------------------------- /src/components/landingpage/top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/top.tsx -------------------------------------------------------------------------------- /src/components/landingpage/what.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/landingpage/what.tsx -------------------------------------------------------------------------------- /src/components/layout/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/layout/footer/footer.tsx -------------------------------------------------------------------------------- /src/components/layout/navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/layout/navbar/navbar.tsx -------------------------------------------------------------------------------- /src/components/locales.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/locales.tsx -------------------------------------------------------------------------------- /src/components/price/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/price/app.tsx -------------------------------------------------------------------------------- /src/components/price/pricing-tiers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/price/pricing-tiers.tsx -------------------------------------------------------------------------------- /src/components/price/pricing-types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/price/pricing-types.tsx -------------------------------------------------------------------------------- /src/components/replicate/common-logic/response.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/replicate/common-logic/response.tsx -------------------------------------------------------------------------------- /src/components/replicate/img-to-video/worker-wraper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/replicate/img-to-video/worker-wraper.tsx -------------------------------------------------------------------------------- /src/components/replicate/img-to-video/worker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/replicate/img-to-video/worker.tsx -------------------------------------------------------------------------------- /src/components/replicate/text-to-image/img-output.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/replicate/text-to-image/img-output.tsx -------------------------------------------------------------------------------- /src/components/replicate/text-to-image/worker-wraper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/replicate/text-to-image/worker-wraper.tsx -------------------------------------------------------------------------------- /src/components/replicate/text-to-image/worker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/replicate/text-to-image/worker.tsx -------------------------------------------------------------------------------- /src/components/seo/seo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/components/seo/seo.tsx -------------------------------------------------------------------------------- /src/config/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/config/colors.json -------------------------------------------------------------------------------- /src/config/domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/config/domain.ts -------------------------------------------------------------------------------- /src/config/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/config/fonts.ts -------------------------------------------------------------------------------- /src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/config/site.ts -------------------------------------------------------------------------------- /src/contexts/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/contexts/app.tsx -------------------------------------------------------------------------------- /src/contexts/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/contexts/theme.tsx -------------------------------------------------------------------------------- /src/i18n/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/i18n/request.ts -------------------------------------------------------------------------------- /src/i18n/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/i18n/routing.ts -------------------------------------------------------------------------------- /src/lib/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/lib/colors.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/providers/session.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/providers/session.tsx -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangbishang/AI-Image-and-Video-Generator-Minimalist-Template/HEAD/tsconfig.json --------------------------------------------------------------------------------