Skip to content

Commit 87ef91e

Browse files
update labels
1 parent 1713644 commit 87ef91e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/markdoc/layouts/Partner.svelte

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
category,
2222
description,
2323
cover,
24-
capabilities,
25-
frameworks,
24+
services,
25+
technologies,
2626
regions,
2727
languages,
2828
website,
@@ -87,29 +87,29 @@
8787
<dl class="divide-smooth sticky top-32 mt-10 flex flex-col gap-7 divide-y">
8888
<div class="flex flex-col justify-between gap-7 pb-7">
8989
<dt class="text-micro font-aeonik-fono tracking-loose uppercase">
90-
Frameworks
90+
Technologies
9191
</dt>
9292
<dd class="flex flex-wrap gap-2">
93-
{#each frameworks as framework}
93+
{#each technologies as technology}
9494
<div
9595
class="text-primary text-caption bg-smooth rounded-full px-3 py-1"
9696
>
97-
{framework}
97+
{technology}
9898
</div>
9999
{/each}
100100
</dd>
101101
</div>
102102

103103
<div class="flex flex-col justify-between gap-7 pb-7">
104104
<dt class="text-micro font-aeonik-fono tracking-loose uppercase">
105-
Capabilities
105+
Services
106106
</dt>
107107
<dd class="flex flex-wrap gap-2">
108-
{#each capabilities as capability}
108+
{#each services as service}
109109
<div
110110
class="text-primary text-caption bg-smooth rounded-full px-3 py-1"
111111
>
112-
{capability}
112+
{service}
113113
</div>
114114
{/each}
115115
</dd>

src/routes/partners/catalog/+page.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export type Partner = {
1212
cover: string;
1313
partnerLevel: 'Bronze' | 'Silver' | 'Gold' | 'Platinum';
1414
category: string;
15-
frameworks: Array<string>;
15+
technologies: Array<string>;
1616
website: string;
1717
href: string;
1818
email: string;
@@ -21,7 +21,7 @@ export type Partner = {
2121
avatar: string;
2222
href: string;
2323
};
24-
capabilities: Array<string>;
24+
services: Array<string>;
2525
regions: Array<string>;
2626
languages: Array<string>;
2727
};

0 commit comments

Comments
 (0)