├── .gitattributes ├── .github └── workflows │ └── build-cli.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── packages ├── cli │ ├── README.md │ ├── package.json │ ├── src │ │ ├── commands │ │ │ ├── init.ts │ │ │ └── page.ts │ │ ├── default-config.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ └── utils │ │ │ ├── copy.ts │ │ │ ├── get-config.ts │ │ │ ├── install-deps.ts │ │ │ ├── segments.ts │ │ │ └── templates.ts │ ├── tsconfig.json │ └── tsup.config.ts └── segments │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── public │ └── _convertfast │ │ └── gradient-bg-0.svg │ ├── src │ ├── App.tsx │ ├── components │ │ ├── bg-shape-circle.tsx │ │ ├── mode-toggle.tsx │ │ ├── theme-provider.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ └── input.tsx │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── segments │ │ ├── bento-grids.tsx │ │ ├── blog.tsx │ │ ├── cta.tsx │ │ ├── faq.tsx │ │ ├── feature-section.tsx │ │ ├── footer.tsx │ │ ├── hero-section.tsx │ │ ├── logo-cloud.tsx │ │ ├── navbar.tsx │ │ ├── news-letter.tsx │ │ ├── pricing.tsx │ │ ├── social-proof.tsx │ │ └── stats.tsx │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── public ├── .DS_Store └── _convertfast │ └── gradient-bg-0.svg ├── templates └── next-template │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── faq.tsx │ ├── favicon.ico │ ├── feature-section.tsx │ ├── globals.css │ ├── hero-section.tsx │ ├── layout.tsx │ ├── lecture-slide.tsx │ ├── navbar.tsx │ ├── page.tsx │ └── work-procedure.tsx │ ├── components │ ├── theme-provider.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ └── dropdown-menu.tsx │ ├── lib │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── Evernote.svg │ ├── Google Docs.svg │ ├── Microsoft Word 2019.svg │ ├── Obsidian.svg │ ├── Rectangle 18.png │ ├── Vector.svg │ ├── _convertfast │ │ └── gradient-bg-0.svg │ ├── image 14.png │ ├── image 15.png │ ├── image 9.png │ ├── next.svg │ ├── photes-icon-1.svg │ └── vercel.svg │ ├── tailwind.config.ts │ └── tsconfig.json ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/.github/workflows/build-cli.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/package.json -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/src/commands/init.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/src/commands/page.ts -------------------------------------------------------------------------------- /packages/cli/src/default-config.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_CONFIG = { 2 | router: "app", 3 | }; 4 | -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/src/index.ts -------------------------------------------------------------------------------- /packages/cli/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/src/interfaces.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/src/utils/copy.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/src/utils/get-config.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/install-deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/src/utils/install-deps.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/segments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/src/utils/segments.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/src/utils/templates.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/cli/tsup.config.ts -------------------------------------------------------------------------------- /packages/segments/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/segments/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/.gitignore -------------------------------------------------------------------------------- /packages/segments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/README.md -------------------------------------------------------------------------------- /packages/segments/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/components.json -------------------------------------------------------------------------------- /packages/segments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/index.html -------------------------------------------------------------------------------- /packages/segments/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/package.json -------------------------------------------------------------------------------- /packages/segments/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/postcss.config.js -------------------------------------------------------------------------------- /packages/segments/public/_convertfast/gradient-bg-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/public/_convertfast/gradient-bg-0.svg -------------------------------------------------------------------------------- /packages/segments/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/App.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/bg-shape-circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/bg-shape-circle.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/mode-toggle.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/ui/button.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/ui/card.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /packages/segments/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/components/ui/input.tsx -------------------------------------------------------------------------------- /packages/segments/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/index.css -------------------------------------------------------------------------------- /packages/segments/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/lib/utils.ts -------------------------------------------------------------------------------- /packages/segments/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/main.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/bento-grids.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/bento-grids.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/blog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/blog.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/cta.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/faq.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/feature-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/feature-section.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/footer.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/hero-section.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/logo-cloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/logo-cloud.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/navbar.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/news-letter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/news-letter.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/pricing.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/social-proof.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/social-proof.tsx -------------------------------------------------------------------------------- /packages/segments/src/segments/stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/src/segments/stats.tsx -------------------------------------------------------------------------------- /packages/segments/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/segments/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/tailwind.config.js -------------------------------------------------------------------------------- /packages/segments/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/tsconfig.app.json -------------------------------------------------------------------------------- /packages/segments/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/tsconfig.json -------------------------------------------------------------------------------- /packages/segments/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/tsconfig.node.json -------------------------------------------------------------------------------- /packages/segments/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/packages/segments/vite.config.ts -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/_convertfast/gradient-bg-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/public/_convertfast/gradient-bg-0.svg -------------------------------------------------------------------------------- /templates/next-template/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /templates/next-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/.gitignore -------------------------------------------------------------------------------- /templates/next-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/README.md -------------------------------------------------------------------------------- /templates/next-template/app/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/faq.tsx -------------------------------------------------------------------------------- /templates/next-template/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/favicon.ico -------------------------------------------------------------------------------- /templates/next-template/app/feature-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/feature-section.tsx -------------------------------------------------------------------------------- /templates/next-template/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/globals.css -------------------------------------------------------------------------------- /templates/next-template/app/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/hero-section.tsx -------------------------------------------------------------------------------- /templates/next-template/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/layout.tsx -------------------------------------------------------------------------------- /templates/next-template/app/lecture-slide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/lecture-slide.tsx -------------------------------------------------------------------------------- /templates/next-template/app/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/navbar.tsx -------------------------------------------------------------------------------- /templates/next-template/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/page.tsx -------------------------------------------------------------------------------- /templates/next-template/app/work-procedure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/app/work-procedure.tsx -------------------------------------------------------------------------------- /templates/next-template/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/components/theme-provider.tsx -------------------------------------------------------------------------------- /templates/next-template/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/components/ui/accordion.tsx -------------------------------------------------------------------------------- /templates/next-template/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/components/ui/avatar.tsx -------------------------------------------------------------------------------- /templates/next-template/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/components/ui/button.tsx -------------------------------------------------------------------------------- /templates/next-template/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/components/ui/card.tsx -------------------------------------------------------------------------------- /templates/next-template/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /templates/next-template/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/lib/utils.ts -------------------------------------------------------------------------------- /templates/next-template/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/next.config.mjs -------------------------------------------------------------------------------- /templates/next-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/package.json -------------------------------------------------------------------------------- /templates/next-template/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/postcss.config.mjs -------------------------------------------------------------------------------- /templates/next-template/public/Evernote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/Evernote.svg -------------------------------------------------------------------------------- /templates/next-template/public/Google Docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/Google Docs.svg -------------------------------------------------------------------------------- /templates/next-template/public/Microsoft Word 2019.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/Microsoft Word 2019.svg -------------------------------------------------------------------------------- /templates/next-template/public/Obsidian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/Obsidian.svg -------------------------------------------------------------------------------- /templates/next-template/public/Rectangle 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/Rectangle 18.png -------------------------------------------------------------------------------- /templates/next-template/public/Vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/Vector.svg -------------------------------------------------------------------------------- /templates/next-template/public/_convertfast/gradient-bg-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/_convertfast/gradient-bg-0.svg -------------------------------------------------------------------------------- /templates/next-template/public/image 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/image 14.png -------------------------------------------------------------------------------- /templates/next-template/public/image 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/image 15.png -------------------------------------------------------------------------------- /templates/next-template/public/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/image 9.png -------------------------------------------------------------------------------- /templates/next-template/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/next.svg -------------------------------------------------------------------------------- /templates/next-template/public/photes-icon-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/photes-icon-1.svg -------------------------------------------------------------------------------- /templates/next-template/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/public/vercel.svg -------------------------------------------------------------------------------- /templates/next-template/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/tailwind.config.ts -------------------------------------------------------------------------------- /templates/next-template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/templates/next-template/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObservedObserver/convertfast-ui/HEAD/yarn.lock --------------------------------------------------------------------------------