mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-06 12:57:48 +00:00
Fix category heading on integration page layout
This commit is contained in:
@@ -27,6 +27,60 @@ export type SocialShareOption = {
|
||||
type: 'link' | 'copy';
|
||||
};
|
||||
|
||||
export type IntegrationCategory = {
|
||||
slug: string;
|
||||
heading: string;
|
||||
description: string;
|
||||
};
|
||||
|
||||
export const integrationCategoryDescriptions: IntegrationCategory[] = [
|
||||
{
|
||||
slug: 'ai',
|
||||
heading: 'AI',
|
||||
description: 'Machine learning and AI capabilities'
|
||||
},
|
||||
{
|
||||
slug: 'auth',
|
||||
heading: 'Auth',
|
||||
description: 'User authentication and authorization'
|
||||
},
|
||||
{
|
||||
slug: 'databases',
|
||||
heading: 'Databases',
|
||||
description: 'Manage database systems'
|
||||
},
|
||||
{
|
||||
slug: 'logging',
|
||||
heading: 'Logging',
|
||||
description: 'Monitor and analyze application logs'
|
||||
},
|
||||
{
|
||||
slug: 'messaging',
|
||||
heading: 'Messaging',
|
||||
description: 'Real-time communication platforms'
|
||||
},
|
||||
{
|
||||
slug: 'payments',
|
||||
heading: 'Payments',
|
||||
description: 'Secure online payment processing'
|
||||
},
|
||||
{
|
||||
slug: 'search',
|
||||
heading: 'Search',
|
||||
description: 'Implement search functionalities'
|
||||
},
|
||||
{
|
||||
slug: 'storage',
|
||||
heading: 'Storage',
|
||||
description: 'Storage for data and media'
|
||||
},
|
||||
{
|
||||
slug: 'deployments',
|
||||
heading: 'Deployments',
|
||||
description: 'Seamlessly deploy your code'
|
||||
}
|
||||
];
|
||||
|
||||
export const socialSharingOptions: Array<SocialShareOption> = [
|
||||
{
|
||||
icon: 'web-icon-x',
|
||||
|
||||
Reference in New Issue
Block a user