├── .cursor └── rules │ ├── global.mdc │ ├── step-by-step-process.mdc │ └── webpage.mdc ├── .cursorignore ├── .cursorrules ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── monorepo.code-workspace ├── package.json ├── packages └── cli │ ├── .cursor │ └── rules │ │ └── nest-commander.mdc │ ├── .cursorignore │ ├── .gitignore │ ├── .npmrc │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── README.ko.md │ ├── README.md │ ├── bin │ └── cli │ ├── eslint.config.mjs │ ├── nest-cli.json │ ├── package.json │ ├── src │ ├── app.module.ts │ ├── cli.ts │ ├── commands │ │ ├── abstract.command.ts │ │ ├── adsense │ │ │ ├── adsense.command.ts │ │ │ └── adsense.module.ts │ │ ├── auth │ │ │ ├── actions │ │ │ │ ├── idpw.ts │ │ │ │ ├── init.ts │ │ │ │ └── kakao.ts │ │ │ ├── auth.command.ts │ │ │ └── index.ts │ │ ├── channelio │ │ │ ├── channelio.command.ts │ │ │ └── channelio.module.ts │ │ ├── clarity │ │ │ ├── clarity.command.ts │ │ │ └── clarity.module.ts │ │ ├── create │ │ │ ├── create-app.ts │ │ │ ├── create.command.ts │ │ │ ├── create.module.ts │ │ │ ├── helpers │ │ │ │ ├── copy.ts │ │ │ │ ├── get-pkg-manager.ts │ │ │ │ ├── git.ts │ │ │ │ ├── install.ts │ │ │ │ ├── is-folder-empty.ts │ │ │ │ ├── is-online.ts │ │ │ │ ├── is-writeable.ts │ │ │ │ └── validate-pkg.ts │ │ │ └── templates │ │ │ │ ├── default │ │ │ │ ├── .cursor │ │ │ │ │ └── rules │ │ │ │ │ │ └── global.mdc │ │ │ │ ├── .env.example │ │ │ │ ├── README-template.md │ │ │ │ ├── components.json │ │ │ │ ├── cursorignore │ │ │ │ ├── eslint.config.mjs │ │ │ │ ├── gitignore │ │ │ │ ├── next-env.d.ts │ │ │ │ ├── next.config.ts │ │ │ │ ├── postcss.config.mjs │ │ │ │ ├── public │ │ │ │ │ └── easynext.png │ │ │ │ ├── src │ │ │ │ │ ├── app │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── globals.css │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── providers.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── accordion.tsx │ │ │ │ │ │ │ ├── avatar.tsx │ │ │ │ │ │ │ ├── badge.tsx │ │ │ │ │ │ │ ├── button.tsx │ │ │ │ │ │ │ ├── card.tsx │ │ │ │ │ │ │ ├── checkbox.tsx │ │ │ │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ │ │ │ ├── file-upload.tsx │ │ │ │ │ │ │ ├── form.tsx │ │ │ │ │ │ │ ├── input.tsx │ │ │ │ │ │ │ ├── label.tsx │ │ │ │ │ │ │ ├── select.tsx │ │ │ │ │ │ │ ├── separator.tsx │ │ │ │ │ │ │ ├── sheet.tsx │ │ │ │ │ │ │ ├── textarea.tsx │ │ │ │ │ │ │ ├── toast.tsx │ │ │ │ │ │ │ └── toaster.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── use-toast.ts │ │ │ │ │ └── lib │ │ │ │ │ │ └── utils.ts │ │ │ │ ├── tailwind.config.ts │ │ │ │ └── tsconfig.json │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ ├── doctor │ │ │ ├── doctor.command.ts │ │ │ └── doctor.module.ts │ │ ├── gtag │ │ │ ├── gtag.command.ts │ │ │ └── gtag.module.ts │ │ ├── i18n │ │ │ ├── i18n.command.ts │ │ │ └── i18n.module.ts │ │ ├── index.ts │ │ ├── lang │ │ │ ├── lang.command.ts │ │ │ └── lang.module.ts │ │ ├── login │ │ │ └── login.command.ts │ │ ├── sentry │ │ │ ├── sentry.command.ts │ │ │ └── sentry.module.ts │ │ ├── sitemap │ │ │ ├── sitemap.command.ts │ │ │ └── sitemap.module.ts │ │ ├── supabase │ │ │ ├── actions │ │ │ │ └── init.ts │ │ │ ├── supabase.command.ts │ │ │ └── supabase.module.ts │ │ └── version │ │ │ ├── version.command.ts │ │ │ └── version.module.ts │ ├── global │ │ └── config │ │ │ ├── auth.config.ts │ │ │ ├── config.module.ts │ │ │ └── global.config.ts │ ├── output-manager.ts │ └── util │ │ ├── check-root.ts │ │ ├── config │ │ ├── files.ts │ │ ├── get-default.ts │ │ └── global-path.ts │ │ ├── emoji.ts │ │ ├── error-handler.ts │ │ ├── humanize-path.ts │ │ ├── i18n │ │ └── index.ts │ │ └── output │ │ ├── create-output.ts │ │ ├── erase-lines.ts │ │ ├── highlight.ts │ │ ├── index.ts │ │ ├── link.ts │ │ └── wait.ts │ ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── tsconfig.base.json ├── turbo.json └── webpage ├── .cursorignore ├── .gitignore ├── README.md ├── components.json ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── channelio.png ├── cursormatfia.png ├── fastcampus.svg ├── file.svg ├── globe.svg ├── images │ ├── home │ │ ├── background │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.webp │ │ │ ├── 13.webp │ │ │ ├── 14.webp │ │ │ ├── 15.webp │ │ │ ├── 16.webp │ │ │ ├── 17.webp │ │ │ ├── 18.webp │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ └── templates │ │ │ ├── community.png │ │ │ ├── landing.gif │ │ │ └── saas.gif │ └── logo │ │ ├── clarity.png │ │ ├── ga.svg │ │ ├── nextjs.svg │ │ ├── supabase.svg │ │ ├── tailwindcss.svg │ │ └── typescript.svg ├── logo.png ├── next.svg ├── shadcn.svg ├── vercel.svg └── window.svg ├── src ├── app │ ├── api │ │ ├── premium │ │ │ ├── cli-login │ │ │ │ └── route.ts │ │ │ ├── coupon │ │ │ │ └── route.ts │ │ │ └── template-url │ │ │ │ └── route.ts │ │ └── register-coupon │ │ │ └── route.ts │ ├── globals.css │ ├── icon.png │ ├── layout.tsx │ ├── page.tsx │ ├── premium │ │ ├── _CouponDialog.tsx │ │ ├── _PremiumDialog.tsx │ │ ├── guide │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ └── providers.tsx ├── components │ ├── Footer.tsx │ ├── Header.tsx │ ├── TechStackCard.tsx │ ├── TechStackSection.tsx │ └── ui │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── file-upload.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ └── toaster.tsx ├── hooks │ └── use-toast.ts └── lib │ ├── supabase │ ├── client.ts │ └── server.ts │ └── utils.ts ├── supabase ├── .gitignore ├── config.toml └── migrations │ ├── 0000_create_accounts_table.sql │ └── 0001_create_templates_table.sql ├── tailwind.config.ts └── tsconfig.json /.cursor/rules/global.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/.cursor/rules/global.mdc -------------------------------------------------------------------------------- /.cursor/rules/step-by-step-process.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/.cursor/rules/step-by-step-process.mdc -------------------------------------------------------------------------------- /.cursor/rules/webpage.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/.cursor/rules/webpage.mdc -------------------------------------------------------------------------------- /.cursorignore: -------------------------------------------------------------------------------- 1 | /pnpm-lock.yaml -------------------------------------------------------------------------------- /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/.cursorrules -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/.npmrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ./packages/cli/README.md -------------------------------------------------------------------------------- /monorepo.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/monorepo.code-workspace -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/package.json -------------------------------------------------------------------------------- /packages/cli/.cursor/rules/nest-commander.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/.cursor/rules/nest-commander.mdc -------------------------------------------------------------------------------- /packages/cli/.cursorignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml -------------------------------------------------------------------------------- /packages/cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/.gitignore -------------------------------------------------------------------------------- /packages/cli/.npmrc: -------------------------------------------------------------------------------- 1 | message="chore: :rocket: release %s" 2 | -------------------------------------------------------------------------------- /packages/cli/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/.prettierrc -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/README.ko.md -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/bin/cli: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../dist/src/cli.js') -------------------------------------------------------------------------------- /packages/cli/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/eslint.config.mjs -------------------------------------------------------------------------------- /packages/cli/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/nest-cli.json -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/app.module.ts -------------------------------------------------------------------------------- /packages/cli/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/cli.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/abstract.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/abstract.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/adsense/adsense.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/adsense/adsense.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/adsense/adsense.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/adsense/adsense.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/auth/actions/idpw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/auth/actions/idpw.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/auth/actions/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/auth/actions/init.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/auth/actions/kakao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/auth/actions/kakao.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/auth/auth.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/auth/auth.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/auth/index.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/channelio/channelio.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/channelio/channelio.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/channelio/channelio.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/channelio/channelio.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/clarity/clarity.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/clarity/clarity.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/clarity/clarity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/clarity/clarity.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/create-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/create-app.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/create.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/create.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/create.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/create.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/helpers/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/helpers/copy.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/helpers/get-pkg-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/helpers/get-pkg-manager.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/helpers/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/helpers/git.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/helpers/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/helpers/install.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/helpers/is-folder-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/helpers/is-folder-empty.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/helpers/is-online.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/helpers/is-online.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/helpers/is-writeable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/helpers/is-writeable.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/helpers/validate-pkg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/helpers/validate-pkg.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/.cursor/rules/global.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/.cursor/rules/global.mdc -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/.env.example -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/README-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/README-template.md -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/components.json -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/cursorignore -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/eslint.config.mjs -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/gitignore -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/next-env.d.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/next.config.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/postcss.config.mjs -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/public/easynext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/public/easynext.png -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/app/favicon.ico -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/app/globals.css -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/app/layout.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/app/page.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/app/providers.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/button.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/card.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/file-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/file-upload.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/form.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/input.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/label.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/select.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/src/lib/utils.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/tailwind.config.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/default/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/index.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/create/templates/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/create/templates/types.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/doctor/doctor.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/doctor/doctor.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/doctor/doctor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/doctor/doctor.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/gtag/gtag.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/gtag/gtag.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/gtag/gtag.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/gtag/gtag.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/i18n/i18n.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/i18n/i18n.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/i18n/i18n.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/i18n/i18n.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/index.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/lang/lang.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/lang/lang.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/lang/lang.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/lang/lang.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/login/login.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/login/login.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sentry/sentry.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/sentry/sentry.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sentry/sentry.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/sentry/sentry.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sitemap/sitemap.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/sitemap/sitemap.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/sitemap/sitemap.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/sitemap/sitemap.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/supabase/actions/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/supabase/actions/init.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/supabase/supabase.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/supabase/supabase.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/supabase/supabase.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/supabase/supabase.module.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/version/version.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/version/version.command.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/version/version.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/commands/version/version.module.ts -------------------------------------------------------------------------------- /packages/cli/src/global/config/auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/global/config/auth.config.ts -------------------------------------------------------------------------------- /packages/cli/src/global/config/config.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/global/config/config.module.ts -------------------------------------------------------------------------------- /packages/cli/src/global/config/global.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/global/config/global.config.ts -------------------------------------------------------------------------------- /packages/cli/src/output-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/output-manager.ts -------------------------------------------------------------------------------- /packages/cli/src/util/check-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/check-root.ts -------------------------------------------------------------------------------- /packages/cli/src/util/config/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/config/files.ts -------------------------------------------------------------------------------- /packages/cli/src/util/config/get-default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/config/get-default.ts -------------------------------------------------------------------------------- /packages/cli/src/util/config/global-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/config/global-path.ts -------------------------------------------------------------------------------- /packages/cli/src/util/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/emoji.ts -------------------------------------------------------------------------------- /packages/cli/src/util/error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/error-handler.ts -------------------------------------------------------------------------------- /packages/cli/src/util/humanize-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/humanize-path.ts -------------------------------------------------------------------------------- /packages/cli/src/util/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/i18n/index.ts -------------------------------------------------------------------------------- /packages/cli/src/util/output/create-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/output/create-output.ts -------------------------------------------------------------------------------- /packages/cli/src/util/output/erase-lines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/output/erase-lines.ts -------------------------------------------------------------------------------- /packages/cli/src/util/output/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/output/highlight.ts -------------------------------------------------------------------------------- /packages/cli/src/util/output/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/output/index.ts -------------------------------------------------------------------------------- /packages/cli/src/util/output/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/output/link.ts -------------------------------------------------------------------------------- /packages/cli/src/util/output/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/src/util/output/wait.ts -------------------------------------------------------------------------------- /packages/cli/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /packages/cli/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/test/jest-e2e.json -------------------------------------------------------------------------------- /packages/cli/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/tsconfig.build.json -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/turbo.json -------------------------------------------------------------------------------- /webpage/.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/.cursorignore -------------------------------------------------------------------------------- /webpage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/.gitignore -------------------------------------------------------------------------------- /webpage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/README.md -------------------------------------------------------------------------------- /webpage/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/components.json -------------------------------------------------------------------------------- /webpage/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/eslint.config.mjs -------------------------------------------------------------------------------- /webpage/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/next.config.ts -------------------------------------------------------------------------------- /webpage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/package.json -------------------------------------------------------------------------------- /webpage/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/postcss.config.mjs -------------------------------------------------------------------------------- /webpage/public/channelio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/channelio.png -------------------------------------------------------------------------------- /webpage/public/cursormatfia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/cursormatfia.png -------------------------------------------------------------------------------- /webpage/public/fastcampus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/fastcampus.svg -------------------------------------------------------------------------------- /webpage/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/file.svg -------------------------------------------------------------------------------- /webpage/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/globe.svg -------------------------------------------------------------------------------- /webpage/public/images/home/background/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/0.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/1.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/10.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/11.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/12.webp -------------------------------------------------------------------------------- /webpage/public/images/home/background/13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/13.webp -------------------------------------------------------------------------------- /webpage/public/images/home/background/14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/14.webp -------------------------------------------------------------------------------- /webpage/public/images/home/background/15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/15.webp -------------------------------------------------------------------------------- /webpage/public/images/home/background/16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/16.webp -------------------------------------------------------------------------------- /webpage/public/images/home/background/17.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/17.webp -------------------------------------------------------------------------------- /webpage/public/images/home/background/18.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/18.webp -------------------------------------------------------------------------------- /webpage/public/images/home/background/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/2.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/3.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/4.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/5.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/6.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/7.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/8.png -------------------------------------------------------------------------------- /webpage/public/images/home/background/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/background/9.png -------------------------------------------------------------------------------- /webpage/public/images/home/templates/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/templates/community.png -------------------------------------------------------------------------------- /webpage/public/images/home/templates/landing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/templates/landing.gif -------------------------------------------------------------------------------- /webpage/public/images/home/templates/saas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/home/templates/saas.gif -------------------------------------------------------------------------------- /webpage/public/images/logo/clarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/logo/clarity.png -------------------------------------------------------------------------------- /webpage/public/images/logo/ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/logo/ga.svg -------------------------------------------------------------------------------- /webpage/public/images/logo/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/logo/nextjs.svg -------------------------------------------------------------------------------- /webpage/public/images/logo/supabase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/logo/supabase.svg -------------------------------------------------------------------------------- /webpage/public/images/logo/tailwindcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/logo/tailwindcss.svg -------------------------------------------------------------------------------- /webpage/public/images/logo/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/images/logo/typescript.svg -------------------------------------------------------------------------------- /webpage/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/logo.png -------------------------------------------------------------------------------- /webpage/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/next.svg -------------------------------------------------------------------------------- /webpage/public/shadcn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/shadcn.svg -------------------------------------------------------------------------------- /webpage/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/vercel.svg -------------------------------------------------------------------------------- /webpage/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/public/window.svg -------------------------------------------------------------------------------- /webpage/src/app/api/premium/cli-login/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/api/premium/cli-login/route.ts -------------------------------------------------------------------------------- /webpage/src/app/api/premium/coupon/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/api/premium/coupon/route.ts -------------------------------------------------------------------------------- /webpage/src/app/api/premium/template-url/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/api/premium/template-url/route.ts -------------------------------------------------------------------------------- /webpage/src/app/api/register-coupon/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/api/register-coupon/route.ts -------------------------------------------------------------------------------- /webpage/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/globals.css -------------------------------------------------------------------------------- /webpage/src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/icon.png -------------------------------------------------------------------------------- /webpage/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/layout.tsx -------------------------------------------------------------------------------- /webpage/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/page.tsx -------------------------------------------------------------------------------- /webpage/src/app/premium/_CouponDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/premium/_CouponDialog.tsx -------------------------------------------------------------------------------- /webpage/src/app/premium/_PremiumDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/premium/_PremiumDialog.tsx -------------------------------------------------------------------------------- /webpage/src/app/premium/guide/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/premium/guide/page.tsx -------------------------------------------------------------------------------- /webpage/src/app/premium/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/premium/layout.tsx -------------------------------------------------------------------------------- /webpage/src/app/premium/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/premium/page.tsx -------------------------------------------------------------------------------- /webpage/src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/app/providers.tsx -------------------------------------------------------------------------------- /webpage/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/Footer.tsx -------------------------------------------------------------------------------- /webpage/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/Header.tsx -------------------------------------------------------------------------------- /webpage/src/components/TechStackCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/TechStackCard.tsx -------------------------------------------------------------------------------- /webpage/src/components/TechStackSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/TechStackSection.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/button.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/card.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/file-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/file-upload.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/form.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/input.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/label.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/select.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /webpage/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /webpage/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /webpage/src/lib/supabase/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/lib/supabase/client.ts -------------------------------------------------------------------------------- /webpage/src/lib/supabase/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/lib/supabase/server.ts -------------------------------------------------------------------------------- /webpage/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/src/lib/utils.ts -------------------------------------------------------------------------------- /webpage/supabase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/supabase/.gitignore -------------------------------------------------------------------------------- /webpage/supabase/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/supabase/config.toml -------------------------------------------------------------------------------- /webpage/supabase/migrations/0000_create_accounts_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/supabase/migrations/0000_create_accounts_table.sql -------------------------------------------------------------------------------- /webpage/supabase/migrations/0001_create_templates_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/supabase/migrations/0001_create_templates_table.sql -------------------------------------------------------------------------------- /webpage/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/tailwind.config.ts -------------------------------------------------------------------------------- /webpage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easynextjs/easynext/HEAD/webpage/tsconfig.json --------------------------------------------------------------------------------