import { useParams } from 'common' import { Auth, EdgeFunctions, Realtime, SqlEditor, Storage, TableEditor } from 'icons' import { ExternalLink, Settings } from 'lucide-react' import Link from 'next/link' import { Button } from 'ui' import { APIKeys } from './APIKeys' import { GetStartedHero } from './GetStartedHero' import { DocsButton } from '@/components/ui/DocsButton' import { InlineLink } from '@/components/ui/InlineLink' import Panel from '@/components/ui/Panel' import { EditorIndexPageLink } from '@/data/prefetchers/project.$ref.editor' import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled' import { DOCS_URL } from '@/lib/constants' export const NewProjectPanel = () => { const { ref } = useParams() const { projectAuthAll: authEnabled, projectEdgeFunctionAll: edgeFunctionsEnabled, projectStorageAll: storageEnabled, } = useIsFeatureEnabled(['project_auth:all', 'project_edge_function:all', 'project_storage:all']) return (
Your project has been deployed on its own instance, with its own API all set up and ready to use.
Start building your app by creating tables and inserting data. Our Table Editor makes Postgres as easy to use as a spreadsheet, but there's also our SQL Editor if you need something more.
Supabase provides all the backend features you need to build a product. You can use it completely, or just the features you need.
A complete user management system that works without any additional tools.
Store, organize, and serve any file types of any size from multiple buckets.
Write custom code without deploying or scaling servers, with fast deploy times and low latency.
Listen to your PostgreSQL database in realtime via websockets.
Interact with your database through the{' '}