Files
supabase/apps/temp-docs/docs/introduction.mdx
2022-10-26 17:35:53 +07:00

86 lines
2.2 KiB
Plaintext

---
title: 'Introduction'
description: 'Introduction to Supabase'
---
# Introduction
Supabase is an open source Firebase alternative providing all the backend features you need to build a product.
You can use it completely, or just the features you need.
[Start a project](https://app.supabase.com) with the hosted platform or learn how to [host Supabase](/docs/guides/hosting/overview) yourself.
## Learn about features
<div className="grid grid-cols-12 gap-4">
<div class="col-span-4">
<ButtonCard
class="card"
to={'/guides/auth'}
title={'Auth'}
description={'User management with Row Level Security.'}
style={{ height: '100%' }}
/>
</div>
<div class="col-span-4">
<ButtonCard
class="card"
to={'/guides/api'}
title={'Auto-generated APIs'}
description={'Instantly generate APIs for your database.'}
style={{ height: '100%' }}
/>
</div>
<div class="col-span-4">
<ButtonCard
class="card"
to={'/guides/database'}
title={'Database'}
description={'A dedicated, scalable Postgres database.'}
style={{ height: '100%' }}
/>
</div>
<div class="col-span-4">
<ButtonCard
class="card"
to={'/guides/functions'}
title={'Edge Functions'}
description={'Server-side functions, distributed globally.'}
style={{ height: '100%' }}
/>
</div>
<div class="col-span-4">
<ButtonCard
class="card"
to={'/guides/realtime'}
title={'Realtime'}
description={'Build with Broadcast, Presence, and Postgres CDC.'}
style={{ height: '100%' }}
/>
</div>
<div class="col-span-4">
<ButtonCard
class="card"
to={'/guides/storage'}
title={'File Storage'}
description={'Store, organize, and serve large files.'}
style={{ height: '100%' }}
/>
</div>
<div class="col-span-4">
<ButtonCard
class="card"
to={'/guides/platform/logs'}
title={'Observability'}
description={'Monitor and debug your infrastucture.'}
style={{ height: '100%' }}
/>
</div>
</div>
## Start with a framework
Supabase is just Postgres, which makes it compatible with a large number of tools and frameworks.
<Frameworks />