Files
sim/apps/sim/app/manifest.ts
Waleed 3ecf7a15eb feat(seo): updated out-of-date site metadata, removed unused static assets, updated emails (#2708)
* feat(seo): updated out-of-date site metadata, removed unused static assets, updated emails

* more

* more

* remove unused social photos
2026-01-07 09:38:40 -08:00

48 lines
1.3 KiB
TypeScript

import type { MetadataRoute } from 'next'
import { getBrandConfig } from '@/lib/branding/branding'
export default function manifest(): MetadataRoute.Manifest {
const brand = getBrandConfig()
return {
name: brand.name === 'Sim' ? 'Sim - AI Agent Workflow Builder' : brand.name,
short_name: brand.name,
description:
'Open-source AI agent workflow builder. 60,000+ developers build and deploy agentic workflows on Sim. Visual drag-and-drop interface for creating AI automations. SOC2 and HIPAA compliant.',
start_url: '/',
scope: '/',
display: 'standalone',
background_color: '#ffffff',
theme_color: brand.theme?.primaryColor || '#6F3DFA',
orientation: 'portrait-primary',
icons: [
{
src: '/favicon/android-chrome-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/favicon/android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/favicon/apple-touch-icon.png',
sizes: '180x180',
type: 'image/png',
},
],
categories: ['productivity', 'developer', 'business'],
shortcuts: [
{
name: 'Create Workflow',
short_name: 'New',
description: 'Create a new AI workflow',
url: '/workspace',
},
],
lang: 'en-US',
dir: 'ltr',
}
}