Merge branch 'main' into pla-2481

This commit is contained in:
ChiragAgg5k
2025-02-20 00:05:07 +05:30
105 changed files with 893 additions and 262 deletions

View File

@@ -1,6 +1,7 @@
<script lang="ts">
import Docs from '$lib/layouts/Docs.svelte';
import Sidebar, { type NavParent, type NavTree } from '$lib/layouts/Sidebar.svelte';
import { isNewUntil } from '$lib/utils/date';
const parent: NavParent = {
href: '/docs',
@@ -20,7 +21,6 @@
href: '/docs/advanced/platform/shortcuts'
},
{
new: true,
label: 'Roles',
href: '/docs/advanced/platform/roles'
}
@@ -93,13 +93,13 @@
label: 'Add ons',
items: [
{
new: true,
label: 'Compute',
new: isNewUntil('28 Feb 2025'),
href: '/docs/advanced/platform/compute'
},
{
new: true,
label: 'Phone OTP',
new: isNewUntil('28 Feb 2025'),
href: '/docs/advanced/platform/phone-otp'
},
{
@@ -130,9 +130,14 @@
href: '/docs/advanced/platform/release-policy'
},
{
new: true,
new: isNewUntil('28 Feb 2025'),
label: 'Fair use',
href: '/docs/advanced/platform/fair-use-policy'
},
{
new: isNewUntil('28 Feb 2025'),
label: 'Abuse',
href: '/docs/advanced/platform/abuse'
}
]
}