mirror of
https://github.com/supabase/supabase.git
synced 2026-07-01 00:34:18 +08:00
Merge branch 'master' into docs/database-api
This commit is contained in:
@@ -278,6 +278,7 @@ export const menuItems: NavMenu = {
|
||||
{ name: 'Performance Tuning', url: '/guides/platform/performance', items: [] },
|
||||
{ name: 'Permissions', url: '/guides/platform/permissions', items: [] },
|
||||
{ name: 'Production Readiness', url: '/guides/platform/going-into-prod', items: [] },
|
||||
{ name: 'SSL Enforcement', url: '/guides/platform/ssl-enforcement', items: [] },
|
||||
{ name: 'Troubleshooting', url: '/guides/platform/troubleshooting', items: [] },
|
||||
],
|
||||
},
|
||||
|
||||
@@ -51,7 +51,7 @@ export const gettingstarted = {
|
||||
{
|
||||
name: 'Framework Quickstarts',
|
||||
items: [
|
||||
{ name: 'ReactJS', url: '/guides/getting-started/quickstarts/reactjs', items: [] },
|
||||
{ name: 'React', url: '/guides/getting-started/quickstarts/reactjs', items: [] },
|
||||
{ name: 'NextJS', url: '/guides/getting-started/quickstarts/nextjs', items: [] },
|
||||
{ name: 'Flutter', url: '/guides/getting-started/quickstarts/flutter', items: [] },
|
||||
{ name: 'SvelteKit', url: '/guides/getting-started/quickstarts/sveltekit', items: [] },
|
||||
@@ -63,7 +63,7 @@ export const gettingstarted = {
|
||||
name: 'Web app tutorials',
|
||||
items: [
|
||||
{
|
||||
name: 'Next.js',
|
||||
name: 'NextJS',
|
||||
url: '/guides/getting-started/tutorials/with-nextjs',
|
||||
items: [],
|
||||
},
|
||||
@@ -498,6 +498,7 @@ export const functions = {
|
||||
{ name: 'Storage Caching', url: '/guides/functions/examples/storage-caching', items: [] },
|
||||
{ name: 'Stripe Webhooks', url: '/guides/functions/examples/stripe-webhooks', items: [] },
|
||||
{ name: 'Telegram Bot', url: '/guides/functions/examples/telegram-bot', items: [] },
|
||||
{ name: 'Upstash Redis', url: '/guides/functions/examples/upstash-redis', items: [] },
|
||||
],
|
||||
},
|
||||
],
|
||||
@@ -586,6 +587,7 @@ export const platform = {
|
||||
{ name: 'Network Restrictions', url: '/guides/platform/network-restrictions', items: [] },
|
||||
{ name: 'Performance Tuning', url: '/guides/platform/performance', items: [] },
|
||||
{ name: 'Permissions', url: '/guides/platform/permissions', items: [] },
|
||||
{ name: 'SSL Enforcement', url: '/guides/platform/ssl-enforcement', items: [] },
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -850,14 +852,14 @@ export const reference = {
|
||||
|
||||
export const reference_javascript_v1 = {
|
||||
icon: 'reference-javascript',
|
||||
title: 'javascript',
|
||||
title: 'JavaScript',
|
||||
url: '/guides/reference/javascript',
|
||||
parent: '/reference',
|
||||
}
|
||||
|
||||
export const reference_javascript_v2 = {
|
||||
icon: 'reference-javascript',
|
||||
title: 'javascript',
|
||||
title: 'JavaScript',
|
||||
url: '/guides/reference/javascript',
|
||||
parent: '/reference',
|
||||
}
|
||||
@@ -878,7 +880,7 @@ export const reference_dart_v1 = {
|
||||
|
||||
export const reference_csharp_v0 = {
|
||||
icon: 'reference-csharp',
|
||||
title: 'c#',
|
||||
title: 'C#',
|
||||
url: 'guides/reference/csharp',
|
||||
parent: '/reference',
|
||||
}
|
||||
|
||||
@@ -89,16 +89,7 @@ const TopNavBarRef: FC = () => {
|
||||
</div>
|
||||
|
||||
<div className="flex items-center gap-6">
|
||||
<div className="flex md:hidden cursor-pointer">
|
||||
<Image
|
||||
onClick={openClippy}
|
||||
width={26}
|
||||
height={29}
|
||||
src={isDarkMode ? clippyImageDark : clippyImage}
|
||||
alt="Clippy"
|
||||
/>
|
||||
</div>
|
||||
<SearchButton className="md:w-full lg:w-96">
|
||||
<SearchButton className="md:w-full lg:w-96 order-2 lg:order-1">
|
||||
<div
|
||||
className="
|
||||
flex
|
||||
@@ -126,6 +117,16 @@ const TopNavBarRef: FC = () => {
|
||||
</div>
|
||||
</div>
|
||||
</SearchButton>
|
||||
|
||||
<div className="flex cursor-pointer order-1 lg:order-2">
|
||||
<Image
|
||||
onClick={openClippy}
|
||||
width={26}
|
||||
height={29}
|
||||
src={isDarkMode ? clippyImageDark : clippyImage}
|
||||
alt="Clippy"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="hidden lg:flex grow items-center justify-end gap-3">
|
||||
<Button
|
||||
|
||||
Reference in New Issue
Block a user