mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
* feat(confluence): added more confluence endpoints * update license * updated * updated docs
157 lines
4.7 KiB
TypeScript
157 lines
4.7 KiB
TypeScript
import type { Metadata } from 'next'
|
|
import { getBaseUrl } from '@/lib/core/utils/urls'
|
|
import { getBrandConfig } from '@/ee/whitelabeling/branding'
|
|
|
|
/**
|
|
* Generate dynamic metadata based on brand configuration
|
|
*/
|
|
export function generateBrandedMetadata(override: Partial<Metadata> = {}): Metadata {
|
|
const brand = getBrandConfig()
|
|
|
|
const defaultTitle = brand.name
|
|
const summaryFull = `Sim is an open-source AI agent workflow builder. Developers at trail-blazing startups to Fortune 500 companies deploy agentic workflows on the Sim platform. 60,000+ developers already use Sim to build and deploy AI agent workflows and connect them to 100+ apps. Sim is SOC2 and HIPAA compliant, ensuring enterprise-grade security for AI automation.`
|
|
const summaryShort = `Sim is an open-source AI agent workflow builder for production workflows.`
|
|
|
|
return {
|
|
title: {
|
|
template: `%s | ${brand.name}`,
|
|
default: defaultTitle,
|
|
},
|
|
description: summaryShort,
|
|
applicationName: brand.name,
|
|
authors: [{ name: brand.name }],
|
|
generator: 'Next.js',
|
|
keywords: [
|
|
'AI agent',
|
|
'AI agent builder',
|
|
'AI agent workflow',
|
|
'AI workflow automation',
|
|
'visual workflow editor',
|
|
'AI agents',
|
|
'workflow canvas',
|
|
'intelligent automation',
|
|
'AI tools',
|
|
'workflow designer',
|
|
'artificial intelligence',
|
|
'business automation',
|
|
'AI agent workflows',
|
|
'visual programming',
|
|
],
|
|
referrer: 'origin-when-cross-origin',
|
|
creator: brand.name,
|
|
publisher: brand.name,
|
|
metadataBase: new URL(getBaseUrl()),
|
|
alternates: {
|
|
canonical: '/',
|
|
languages: {
|
|
'en-US': '/',
|
|
},
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
googleBot: {
|
|
index: true,
|
|
follow: true,
|
|
'max-image-preview': 'large',
|
|
'max-video-preview': -1,
|
|
'max-snippet': -1,
|
|
},
|
|
},
|
|
openGraph: {
|
|
type: 'website',
|
|
locale: 'en_US',
|
|
url: getBaseUrl(),
|
|
title: defaultTitle,
|
|
description: summaryFull,
|
|
siteName: brand.name,
|
|
images: [
|
|
{
|
|
url: brand.logoUrl || '/logo/426-240/primary/small.png',
|
|
width: 2130,
|
|
height: 1200,
|
|
alt: brand.name,
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: 'summary_large_image',
|
|
title: defaultTitle,
|
|
description: summaryFull,
|
|
images: [brand.logoUrl || '/logo/426-240/primary/small.png'],
|
|
creator: '@simdotai',
|
|
site: '@simdotai',
|
|
},
|
|
manifest: '/manifest.webmanifest',
|
|
icons: {
|
|
icon: [
|
|
{ url: '/favicon/favicon-16x16.png', sizes: '16x16', type: 'image/png' },
|
|
{ url: '/favicon/favicon-32x32.png', sizes: '32x32', type: 'image/png' },
|
|
{
|
|
url: '/favicon/favicon-192x192.png',
|
|
sizes: '192x192',
|
|
type: 'image/png',
|
|
},
|
|
{
|
|
url: '/favicon/favicon-512x512.png',
|
|
sizes: '512x512',
|
|
type: 'image/png',
|
|
},
|
|
{ url: brand.faviconUrl || '/sim.png', sizes: 'any', type: 'image/png' },
|
|
],
|
|
apple: '/favicon/apple-touch-icon.png',
|
|
shortcut: brand.faviconUrl || '/favicon/favicon.ico',
|
|
},
|
|
appleWebApp: {
|
|
capable: true,
|
|
statusBarStyle: 'default',
|
|
title: brand.name,
|
|
},
|
|
formatDetection: {
|
|
telephone: false,
|
|
},
|
|
category: 'technology',
|
|
other: {
|
|
'apple-mobile-web-app-capable': 'yes',
|
|
'mobile-web-app-capable': 'yes',
|
|
'msapplication-TileColor': '#701FFC', // Default Sim brand primary color
|
|
'msapplication-config': '/favicon/browserconfig.xml',
|
|
},
|
|
...override,
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Generate static structured data for SEO
|
|
*/
|
|
export function generateStructuredData() {
|
|
return {
|
|
'@context': 'https://schema.org',
|
|
'@type': 'SoftwareApplication',
|
|
name: 'Sim',
|
|
description:
|
|
'Sim is an open-source AI agent workflow builder. Developers at trail-blazing startups to Fortune 500 companies deploy agentic workflows on the Sim platform. 60,000+ developers already use Sim to build and deploy AI agent workflows and connect them to 100+ apps. Sim is SOC2 and HIPAA compliant, ensuring enterprise-level security.',
|
|
url: getBaseUrl(),
|
|
applicationCategory: 'BusinessApplication',
|
|
operatingSystem: 'Web Browser',
|
|
applicationSubCategory: 'AIWorkflowAutomation',
|
|
areaServed: 'Worldwide',
|
|
availableLanguage: ['en'],
|
|
offers: {
|
|
'@type': 'Offer',
|
|
category: 'SaaS',
|
|
},
|
|
creator: {
|
|
'@type': 'Organization',
|
|
name: 'Sim',
|
|
url: 'https://sim.ai',
|
|
},
|
|
featureList: [
|
|
'Visual AI Agent Builder',
|
|
'Workflow Canvas Interface',
|
|
'AI Agent Automation',
|
|
'Custom AI Workflows',
|
|
],
|
|
}
|
|
}
|