diff --git a/apps/studio/components/interfaces/ProjectCreation/InitialStep.tsx b/apps/studio/components/interfaces/ProjectCreation/InitialStep.tsx deleted file mode 100644 index 4c13387d69d74..0000000000000 --- a/apps/studio/components/interfaces/ProjectCreation/InitialStep.tsx +++ /dev/null @@ -1,82 +0,0 @@ -import { Database, Import } from 'lucide-react' - -import { cn } from 'ui' -import { SchemaGenerator } from './SchemaGenerator' - -interface SupabaseService { - name: 'Auth' | 'Storage' | 'Database' | 'Edge Function' | 'Cron' | 'Queues' | 'Vector' - reason: string -} - -export const InitialStep = ({ - onSubmit, - onStartBlank, - onMigrate, - onSqlGenerated, - onServicesUpdated, - onTitleUpdated, -}: { - onSubmit: (value: string) => void - onStartBlank: () => void - onMigrate: () => void - onSqlGenerated: (sql: string) => void - onServicesUpdated: (services: SupabaseService[]) => void - onTitleUpdated: (title: string) => void -}) => { - return ( -
- We can generate a schema for you to kick start your project. -
-Primary Database
-- - {projectDetails.dbRegion} - -
-- - {projectDetails.cloudProvider} - - • - - {projectDetails.postgresVersion} - -
-
-