├── .env.example ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── components.json ├── docs ├── .vitepress │ ├── config.ts │ └── theme │ │ ├── custom.css │ │ └── index.ts ├── getting-started │ ├── features.md │ ├── introduction.md │ └── quick-start.md ├── index.md ├── netlify.toml ├── public │ └── images │ │ ├── features │ │ ├── deploy-dark.png │ │ ├── deploy-light.png │ │ ├── editor-dark.png │ │ ├── editor-light.png │ │ ├── history-dark.png │ │ ├── history-light.png │ │ ├── interface-dark.png │ │ ├── interface-light.png │ │ ├── share-dark.png │ │ ├── share-light.png │ │ ├── stderr-dark.png │ │ ├── stderr-light.png │ │ ├── stdout-dark.png │ │ └── stdout-light.png │ │ ├── main-dark.png │ │ ├── main-light.png │ │ └── quick-start │ │ ├── create-dark.png │ │ ├── create-light.png │ │ ├── deploy-dark.png │ │ ├── deploy-light.png │ │ ├── editor-dark.png │ │ ├── editor-light.png │ │ ├── interact-dark.png │ │ ├── interact-light.png │ │ ├── login-dark.png │ │ └── login-light.png ├── support │ ├── contributing.md │ └── faq.md └── templates │ ├── access-control.md │ ├── counter.md │ ├── erc1155.md │ ├── erc20.md │ └── erc721.md ├── eslint.config.js ├── index.html ├── netlify.toml ├── package.json ├── postcss.config.js ├── public ├── images │ ├── main-dark.png │ └── main-light.png ├── robots.txt └── sitemap.xml ├── src ├── App.css ├── App.tsx ├── components │ ├── CompilationStatus.tsx │ ├── Editor.tsx │ ├── LoadingSkeleton.tsx │ ├── ProfileDialog.tsx │ ├── ProjectList.tsx │ ├── ShareProjectDialog.tsx │ ├── ThemeToggle.tsx │ ├── UserNav.tsx │ ├── abi │ │ ├── ABIContractSelector.tsx │ │ ├── ABIEmptyState.tsx │ │ ├── ABIExecuteDialog.tsx │ │ ├── ABIExecutionHistory.tsx │ │ ├── ABIHeader.tsx │ │ ├── ABIMethodCard.tsx │ │ ├── ABIMethodSignature.tsx │ │ ├── ABIMethodTooltip.tsx │ │ └── ABIParameterTooltip.tsx │ ├── analytics │ │ ├── GAPageView.tsx │ │ └── GAScript.tsx │ ├── editor │ │ ├── DeployDialog.tsx │ │ ├── EditorConfig.ts │ │ ├── EditorHeader.tsx │ │ └── useMonacoEditor.ts │ ├── landing │ │ ├── CodePreview.tsx │ │ ├── DocsSection.tsx │ │ ├── FAQ.tsx │ │ ├── Features.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Hero.tsx │ │ ├── SignInDialog.tsx │ │ ├── UseCases.tsx │ │ ├── UsersSection.tsx │ │ └── WelcomeDialog.tsx │ ├── projects │ │ ├── NewProjectDialog.tsx │ │ ├── ProjectCard.tsx │ │ ├── ProjectDeleteDialog.tsx │ │ ├── ProjectEditDialog.tsx │ │ ├── ProjectHeader.tsx │ │ ├── ProjectList.tsx │ │ ├── ProjectTabs.tsx │ │ ├── TemplateDialog.tsx │ │ └── TemplateList.tsx │ ├── seo │ │ └── SEO.tsx │ ├── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx │ └── views │ │ ├── ABIView.tsx │ │ └── CompilerView.tsx ├── hooks │ └── use-toast.ts ├── index.css ├── lib │ ├── analytics.ts │ ├── ansi.ts │ ├── api.ts │ ├── auth.ts │ ├── config.ts │ ├── contract.ts │ ├── editor.ts │ ├── supabase.ts │ ├── templates.ts │ ├── types.ts │ └── utils.ts ├── main.tsx ├── pages │ ├── EditorPage.tsx │ ├── LandingPage.tsx │ ├── ProjectsPage.tsx │ └── SharedProjectPage.tsx ├── types │ └── global.d.ts └── vite-env.d.ts ├── supabase └── migrations │ ├── 20250115111828_crimson_mouse.sql │ ├── 20250115113520_young_valley.sql │ ├── 20250115130935_rough_shape.sql │ ├── 20250115181424_aged_bonus.sql │ ├── 20250117132553_cold_poetry.sql │ ├── 20250128150258_winter_lab.sql │ ├── 20250128150337_blue_star.sql │ ├── 20250128164025_wispy_pebble.sql │ ├── 20250129142948_jade_oasis.sql │ ├── 20250129144147_long_sea.sql │ ├── 20250130103246_bronze_scene.sql │ ├── 20250130104052_red_wave.sql │ ├── 20250130104231_rustic_tree.sql │ └── 20250130104350_rapid_darkness.sql ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/components.json -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/getting-started/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/getting-started/features.md -------------------------------------------------------------------------------- /docs/getting-started/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/getting-started/introduction.md -------------------------------------------------------------------------------- /docs/getting-started/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/getting-started/quick-start.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/netlify.toml -------------------------------------------------------------------------------- /docs/public/images/features/deploy-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/deploy-dark.png -------------------------------------------------------------------------------- /docs/public/images/features/deploy-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/deploy-light.png -------------------------------------------------------------------------------- /docs/public/images/features/editor-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/editor-dark.png -------------------------------------------------------------------------------- /docs/public/images/features/editor-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/editor-light.png -------------------------------------------------------------------------------- /docs/public/images/features/history-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/history-dark.png -------------------------------------------------------------------------------- /docs/public/images/features/history-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/history-light.png -------------------------------------------------------------------------------- /docs/public/images/features/interface-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/interface-dark.png -------------------------------------------------------------------------------- /docs/public/images/features/interface-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/interface-light.png -------------------------------------------------------------------------------- /docs/public/images/features/share-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/share-dark.png -------------------------------------------------------------------------------- /docs/public/images/features/share-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/share-light.png -------------------------------------------------------------------------------- /docs/public/images/features/stderr-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/stderr-dark.png -------------------------------------------------------------------------------- /docs/public/images/features/stderr-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/stderr-light.png -------------------------------------------------------------------------------- /docs/public/images/features/stdout-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/stdout-dark.png -------------------------------------------------------------------------------- /docs/public/images/features/stdout-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/features/stdout-light.png -------------------------------------------------------------------------------- /docs/public/images/main-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/main-dark.png -------------------------------------------------------------------------------- /docs/public/images/main-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/main-light.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/create-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/create-dark.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/create-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/create-light.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/deploy-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/deploy-dark.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/deploy-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/deploy-light.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/editor-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/editor-dark.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/editor-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/editor-light.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/interact-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/interact-dark.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/interact-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/interact-light.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/login-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/login-dark.png -------------------------------------------------------------------------------- /docs/public/images/quick-start/login-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/public/images/quick-start/login-light.png -------------------------------------------------------------------------------- /docs/support/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/support/contributing.md -------------------------------------------------------------------------------- /docs/support/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/support/faq.md -------------------------------------------------------------------------------- /docs/templates/access-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/templates/access-control.md -------------------------------------------------------------------------------- /docs/templates/counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/templates/counter.md -------------------------------------------------------------------------------- /docs/templates/erc1155.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/templates/erc1155.md -------------------------------------------------------------------------------- /docs/templates/erc20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/templates/erc20.md -------------------------------------------------------------------------------- /docs/templates/erc721.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/docs/templates/erc721.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/images/main-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/public/images/main-dark.png -------------------------------------------------------------------------------- /public/images/main-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/public/images/main-light.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/CompilationStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/CompilationStatus.tsx -------------------------------------------------------------------------------- /src/components/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/Editor.tsx -------------------------------------------------------------------------------- /src/components/LoadingSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/LoadingSkeleton.tsx -------------------------------------------------------------------------------- /src/components/ProfileDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ProfileDialog.tsx -------------------------------------------------------------------------------- /src/components/ProjectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ProjectList.tsx -------------------------------------------------------------------------------- /src/components/ShareProjectDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ShareProjectDialog.tsx -------------------------------------------------------------------------------- /src/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/UserNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/UserNav.tsx -------------------------------------------------------------------------------- /src/components/abi/ABIContractSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/abi/ABIContractSelector.tsx -------------------------------------------------------------------------------- /src/components/abi/ABIEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/abi/ABIEmptyState.tsx -------------------------------------------------------------------------------- /src/components/abi/ABIExecuteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/abi/ABIExecuteDialog.tsx -------------------------------------------------------------------------------- /src/components/abi/ABIExecutionHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/abi/ABIExecutionHistory.tsx -------------------------------------------------------------------------------- /src/components/abi/ABIHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/abi/ABIHeader.tsx -------------------------------------------------------------------------------- /src/components/abi/ABIMethodCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/abi/ABIMethodCard.tsx -------------------------------------------------------------------------------- /src/components/abi/ABIMethodSignature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/abi/ABIMethodSignature.tsx -------------------------------------------------------------------------------- /src/components/abi/ABIMethodTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/abi/ABIMethodTooltip.tsx -------------------------------------------------------------------------------- /src/components/abi/ABIParameterTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/abi/ABIParameterTooltip.tsx -------------------------------------------------------------------------------- /src/components/analytics/GAPageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/analytics/GAPageView.tsx -------------------------------------------------------------------------------- /src/components/analytics/GAScript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/analytics/GAScript.tsx -------------------------------------------------------------------------------- /src/components/editor/DeployDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/editor/DeployDialog.tsx -------------------------------------------------------------------------------- /src/components/editor/EditorConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/editor/EditorConfig.ts -------------------------------------------------------------------------------- /src/components/editor/EditorHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/editor/EditorHeader.tsx -------------------------------------------------------------------------------- /src/components/editor/useMonacoEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/editor/useMonacoEditor.ts -------------------------------------------------------------------------------- /src/components/landing/CodePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/CodePreview.tsx -------------------------------------------------------------------------------- /src/components/landing/DocsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/DocsSection.tsx -------------------------------------------------------------------------------- /src/components/landing/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/FAQ.tsx -------------------------------------------------------------------------------- /src/components/landing/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/Features.tsx -------------------------------------------------------------------------------- /src/components/landing/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/Footer.tsx -------------------------------------------------------------------------------- /src/components/landing/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/Header.tsx -------------------------------------------------------------------------------- /src/components/landing/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/Hero.tsx -------------------------------------------------------------------------------- /src/components/landing/SignInDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/SignInDialog.tsx -------------------------------------------------------------------------------- /src/components/landing/UseCases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/UseCases.tsx -------------------------------------------------------------------------------- /src/components/landing/UsersSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/UsersSection.tsx -------------------------------------------------------------------------------- /src/components/landing/WelcomeDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/landing/WelcomeDialog.tsx -------------------------------------------------------------------------------- /src/components/projects/NewProjectDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/projects/NewProjectDialog.tsx -------------------------------------------------------------------------------- /src/components/projects/ProjectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/projects/ProjectCard.tsx -------------------------------------------------------------------------------- /src/components/projects/ProjectDeleteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/projects/ProjectDeleteDialog.tsx -------------------------------------------------------------------------------- /src/components/projects/ProjectEditDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/projects/ProjectEditDialog.tsx -------------------------------------------------------------------------------- /src/components/projects/ProjectHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/projects/ProjectHeader.tsx -------------------------------------------------------------------------------- /src/components/projects/ProjectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/projects/ProjectList.tsx -------------------------------------------------------------------------------- /src/components/projects/ProjectTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/projects/ProjectTabs.tsx -------------------------------------------------------------------------------- /src/components/projects/TemplateDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/projects/TemplateDialog.tsx -------------------------------------------------------------------------------- /src/components/projects/TemplateList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/projects/TemplateList.tsx -------------------------------------------------------------------------------- /src/components/seo/SEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/seo/SEO.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/views/ABIView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/views/ABIView.tsx -------------------------------------------------------------------------------- /src/components/views/CompilerView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/components/views/CompilerView.tsx -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/analytics.ts -------------------------------------------------------------------------------- /src/lib/ansi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/ansi.ts -------------------------------------------------------------------------------- /src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/api.ts -------------------------------------------------------------------------------- /src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/auth.ts -------------------------------------------------------------------------------- /src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/config.ts -------------------------------------------------------------------------------- /src/lib/contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/contract.ts -------------------------------------------------------------------------------- /src/lib/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/editor.ts -------------------------------------------------------------------------------- /src/lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/supabase.ts -------------------------------------------------------------------------------- /src/lib/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/templates.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/EditorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/pages/EditorPage.tsx -------------------------------------------------------------------------------- /src/pages/LandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/pages/LandingPage.tsx -------------------------------------------------------------------------------- /src/pages/ProjectsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/pages/ProjectsPage.tsx -------------------------------------------------------------------------------- /src/pages/SharedProjectPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/pages/SharedProjectPage.tsx -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /supabase/migrations/20250115111828_crimson_mouse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250115111828_crimson_mouse.sql -------------------------------------------------------------------------------- /supabase/migrations/20250115113520_young_valley.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250115113520_young_valley.sql -------------------------------------------------------------------------------- /supabase/migrations/20250115130935_rough_shape.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250115130935_rough_shape.sql -------------------------------------------------------------------------------- /supabase/migrations/20250115181424_aged_bonus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250115181424_aged_bonus.sql -------------------------------------------------------------------------------- /supabase/migrations/20250117132553_cold_poetry.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250117132553_cold_poetry.sql -------------------------------------------------------------------------------- /supabase/migrations/20250128150258_winter_lab.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250128150258_winter_lab.sql -------------------------------------------------------------------------------- /supabase/migrations/20250128150337_blue_star.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250128150337_blue_star.sql -------------------------------------------------------------------------------- /supabase/migrations/20250128164025_wispy_pebble.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250128164025_wispy_pebble.sql -------------------------------------------------------------------------------- /supabase/migrations/20250129142948_jade_oasis.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250129142948_jade_oasis.sql -------------------------------------------------------------------------------- /supabase/migrations/20250129144147_long_sea.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250129144147_long_sea.sql -------------------------------------------------------------------------------- /supabase/migrations/20250130103246_bronze_scene.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250130103246_bronze_scene.sql -------------------------------------------------------------------------------- /supabase/migrations/20250130104052_red_wave.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250130104052_red_wave.sql -------------------------------------------------------------------------------- /supabase/migrations/20250130104231_rustic_tree.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250130104231_rustic_tree.sql -------------------------------------------------------------------------------- /supabase/migrations/20250130104350_rapid_darkness.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/supabase/migrations/20250130104350_rapid_darkness.sql -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgayayci/wizard/HEAD/vite.config.ts --------------------------------------------------------------------------------