Skip to content

Commit 33da201

Browse files
committed
fix(landing): remove Sakana from featured footer providers
1 parent f08179e commit 33da201

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

‎apps/docs/components/footer/footer.tsx‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const RESOURCES_LINKS: FooterItem[] = [
4141
{ label: 'Contact', href: `${SIM_SITE_URL}/contact`, external: true },
4242
]
4343

44-
/** Top model providers — mirrors the landing footer's top 8 catalog providers. */
44+
/** Top model providers — mirrors the landing footer's top 7 catalog providers. */
4545
const MODEL_LINKS: FooterItem[] = [
4646
{ label: 'All Models', href: `${SIM_SITE_URL}/models`, external: true },
4747
{ label: 'OpenAI', href: `${SIM_SITE_URL}/models/openai`, external: true },
@@ -51,7 +51,6 @@ const MODEL_LINKS: FooterItem[] = [
5151
{ label: 'xAI', href: `${SIM_SITE_URL}/models/xai`, external: true },
5252
{ label: 'Cerebras', href: `${SIM_SITE_URL}/models/cerebras`, external: true },
5353
{ label: 'Groq', href: `${SIM_SITE_URL}/models/groq`, external: true },
54-
{ label: 'Sakana AI', href: `${SIM_SITE_URL}/models/sakana`, external: true },
5554
]
5655

5756
const BLOCK_LINKS: FooterItem[] = [

‎apps/sim/app/(landing)/components/footer/footer.tsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const RESOURCES_LINKS: FooterItem[] = [
8787
/** Top model providers, sourced from the catalog so labels/hrefs never drift. */
8888
const MODEL_LINKS: FooterItem[] = [
8989
{ label: 'All Models', href: '/models' },
90-
...MODEL_PROVIDERS_WITH_CATALOGS.slice(0, 8).map((provider) => ({
90+
...MODEL_PROVIDERS_WITH_CATALOGS.slice(0, 7).map((provider) => ({
9191
label: provider.name,
9292
href: provider.href,
9393
})),

0 commit comments

Comments
 (0)