searchable

This commit is contained in:
Jesse Winton
2025-03-18 14:23:09 -04:00
parent b303423a23
commit c14cc55621
6 changed files with 36 additions and 26 deletions

View File

@@ -27,13 +27,13 @@ export type SocialShareOption = {
type: 'link' | 'copy';
};
export type IntegrationCategory = {
export type SearchableCategory = {
slug: string;
heading: string;
description: string;
};
export const integrationCategoryDescriptions: IntegrationCategory[] = [
export const integrationCategoryDescriptions: SearchableCategory[] = [
{
slug: 'ai',
heading: 'AI',
@@ -81,6 +81,14 @@ export const integrationCategoryDescriptions: IntegrationCategory[] = [
}
];
export const partnerCategoryDescriptions: SearchableCategory[] = [
{
slug: 'agency',
heading: 'Agency',
description: 'Agency description goes here'
}
];
export const socialSharingOptions: Array<SocialShareOption> = [
{
icon: 'web-icon-x',