Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 5 additions & 48 deletions apps/sim/app/(landing)/changelog/page.tsx
Original file line number Diff line number Diff line change
@@ -1,60 +1,17 @@
import type { Metadata } from 'next'
import { SITE_URL } from '@/lib/core/utils/urls'
import { buildLandingMetadata } from '@/lib/landing/seo'
import Changelog from '@/app/(landing)/changelog/changelog'

export const revalidate = 3600

const PAGE_URL = `${SITE_URL}/changelog`
const TITLE = 'Changelog | Sim, the AI Workspace'
const DESCRIPTION =
'Every new feature, improvement, and fix in Sim, the open-source AI workspace, with release notes straight from GitHub.'

export const metadata: Metadata = {
metadataBase: new URL(SITE_URL),
title: { absolute: TITLE },
export const metadata = buildLandingMetadata({
title: TITLE,
description: DESCRIPTION,
authors: [{ name: 'Sim' }],
creator: 'Sim',
publisher: 'Sim',
openGraph: {
title: TITLE,
description: DESCRIPTION,
type: 'website',
url: PAGE_URL,
siteName: 'Sim',
locale: 'en_US',
images: [
{
url: '/logo/426-240/reverse/small.png',
width: 2130,
height: 1200,
alt: 'Changelog | Sim, the AI Workspace',
type: 'image/png',
},
],
},
twitter: {
card: 'summary_large_image',
site: '@simdotai',
creator: '@simdotai',
title: TITLE,
description: DESCRIPTION,
images: {
url: '/logo/426-240/reverse/small.png',
alt: 'Changelog | Sim, the AI Workspace',
},
},
alternates: {
canonical: PAGE_URL,
languages: { 'en-US': PAGE_URL, 'x-default': PAGE_URL },
},
robots: {
index: true,
follow: true,
googleBot: { index: true, follow: true, 'max-image-preview': 'large', 'max-snippet': -1 },
},
category: 'technology',
}
path: '/changelog',
})

export default function Page() {
return <Changelog />
Expand Down
53 changes: 5 additions & 48 deletions apps/sim/app/(landing)/demo/page.tsx
Original file line number Diff line number Diff line change
@@ -1,60 +1,17 @@
import type { Metadata } from 'next'
import { SITE_URL } from '@/lib/core/utils/urls'
import { buildLandingMetadata } from '@/lib/landing/seo'
import Demo from '@/app/(landing)/demo/demo'

export const revalidate = 3600

const PAGE_URL = `${SITE_URL}/demo`
const TITLE = 'Book a Demo | Sim, the AI Workspace'
const DESCRIPTION =
'Book a demo of Sim, the AI agent workspace where teams build, deploy, and manage AI agents and workflows that connect 1,000+ integrations and every major LLM.'

export const metadata: Metadata = {
metadataBase: new URL(SITE_URL),
title: { absolute: TITLE },
export const metadata = buildLandingMetadata({
title: TITLE,
description: DESCRIPTION,
authors: [{ name: 'Sim' }],
creator: 'Sim',
publisher: 'Sim',
openGraph: {
title: TITLE,
description: DESCRIPTION,
type: 'website',
url: PAGE_URL,
siteName: 'Sim',
locale: 'en_US',
images: [
{
url: '/logo/426-240/reverse/small.png',
width: 2130,
height: 1200,
alt: 'Book a Demo | Sim, the AI Workspace',
type: 'image/png',
},
],
},
twitter: {
card: 'summary_large_image',
site: '@simdotai',
creator: '@simdotai',
title: TITLE,
description: DESCRIPTION,
images: {
url: '/logo/426-240/reverse/small.png',
alt: 'Book a Demo | Sim, the AI Workspace',
},
},
alternates: {
canonical: PAGE_URL,
languages: { 'en-US': PAGE_URL, 'x-default': PAGE_URL },
},
robots: {
index: true,
follow: true,
googleBot: { index: true, follow: true, 'max-image-preview': 'large', 'max-snippet': -1 },
},
category: 'technology',
}
path: '/demo',
})

export default function Page() {
return <Demo />
Expand Down
51 changes: 6 additions & 45 deletions apps/sim/app/(landing)/enterprise/page.tsx
Original file line number Diff line number Diff line change
@@ -1,59 +1,20 @@
import type { Metadata } from 'next'
import { SITE_URL } from '@/lib/core/utils/urls'
import { buildLandingMetadata } from '@/lib/landing/seo'
import EnterprisePage from '@/app/(landing)/enterprise/enterprise'

export const revalidate = 3600

const PAGE_URL = `${SITE_URL}/enterprise`
const TITLE = 'Enterprise AI Agent Platform | Sim AI'
const DESCRIPTION =
'Build, deploy, and govern enterprise AI agents in one workspace with security, approvals, observability, and collaboration.'

export const metadata: Metadata = {
metadataBase: new URL(SITE_URL),
title: { absolute: TITLE },
export const metadata = buildLandingMetadata({
title: TITLE,
description: DESCRIPTION,
path: '/enterprise',
keywords:
'enterprise ai agents, enterprise ai agent, enterprise ai agent platform, enterprise workflow agents',
authors: [{ name: 'Sim' }],
creator: 'Sim',
publisher: 'Sim',
openGraph: {
title: TITLE,
description: DESCRIPTION,
type: 'website',
url: PAGE_URL,
siteName: 'Sim',
locale: 'en_US',
images: [
{
url: '/logo/426-240/reverse/small.png',
width: 2130,
height: 1200,
alt: TITLE,
type: 'image/png',
},
],
},
twitter: {
card: 'summary_large_image',
site: '@simdotai',
creator: '@simdotai',
title: TITLE,
description: DESCRIPTION,
images: { url: '/logo/426-240/reverse/small.png', alt: 'Sim' },
},
alternates: {
canonical: PAGE_URL,
languages: { 'en-US': PAGE_URL, 'x-default': PAGE_URL },
},
robots: {
index: true,
follow: true,
googleBot: { index: true, follow: true, 'max-image-preview': 'large', 'max-snippet': -1 },
},
category: 'technology',
}
twitterImageAlt: 'Sim',
})

export default function Page() {
return <EnterprisePage />
Expand Down
46 changes: 6 additions & 40 deletions apps/sim/app/(landing)/partners/page.tsx
Original file line number Diff line number Diff line change
@@ -1,54 +1,20 @@
import { ChipLink } from '@sim/emcn'
import type { Metadata } from 'next'
import { SITE_URL } from '@/lib/core/utils/urls'
import { buildLandingMetadata } from '@/lib/landing/seo'

const PAGE_URL = `${SITE_URL}/partners`
const TITLE = 'Partner Program | Sim'
const DESCRIPTION =
"Join the Sim partner program. Build, deploy, and sell AI agent solutions powered by Sim's AI workspace, and earn your certification through Sim Academy."

export const metadata: Metadata = {
metadataBase: new URL(SITE_URL),
title: { absolute: TITLE },
export const metadata = buildLandingMetadata({
title: TITLE,
description: DESCRIPTION,
path: '/partners',
keywords:
'Sim partner program, AI agent partners, AI workspace partners, Sim Academy certification, AI agent reseller, co-marketing',
openGraph: {
title: TITLE,
description: DESCRIPTION,
type: 'website',
url: PAGE_URL,
siteName: 'Sim',
locale: 'en_US',
images: [
{
url: '/logo/426-240/reverse/small.png',
width: 2130,
height: 1200,
alt: TITLE,
type: 'image/png',
},
],
},
twitter: {
card: 'summary_large_image',
site: '@simdotai',
creator: '@simdotai',
title: TITLE,
description: DESCRIPTION,
images: { url: '/logo/426-240/reverse/small.png', alt: 'Sim' },
},
alternates: {
canonical: PAGE_URL,
languages: { 'en-US': PAGE_URL, 'x-default': PAGE_URL },
},
robots: {
index: true,
follow: true,
googleBot: { index: true, follow: true, 'max-image-preview': 'large', 'max-snippet': -1 },
},
category: 'technology',
}
twitterImageAlt: 'Sim',
})

const partnersJsonLd = {
'@context': 'https://schema.org',
Expand Down
53 changes: 5 additions & 48 deletions apps/sim/app/(landing)/pricing/page.tsx
Original file line number Diff line number Diff line change
@@ -1,64 +1,21 @@
import type { Metadata } from 'next'
import type { SearchParams } from 'nuqs/server'
import { SITE_URL } from '@/lib/core/utils/urls'
import { buildLandingMetadata } from '@/lib/landing/seo'
import Pricing from '@/app/(landing)/pricing/pricing'
import { pricingSearchParamsCache } from '@/app/(landing)/pricing/search-params'

export const revalidate = 3600

const PAGE_URL = `${SITE_URL}/pricing`
const TITLE = 'Pricing | Sim, the AI Workspace'
const DESCRIPTION =
'Pricing for Sim, the open-source AI workspace for building, deploying, and managing AI agents. Compare the Free, Pro, Max, and Enterprise plans. Start free.'

export const metadata: Metadata = {
metadataBase: new URL(SITE_URL),
title: { absolute: TITLE },
export const metadata = buildLandingMetadata({
title: TITLE,
description: DESCRIPTION,
path: '/pricing',
keywords:
'Sim pricing, AI workspace pricing, AI agent platform pricing, build AI agents, Pro plan, Max plan, Enterprise plan, open-source AI agents, LLM pricing',
authors: [{ name: 'Sim' }],
creator: 'Sim',
publisher: 'Sim',
openGraph: {
title: TITLE,
description: DESCRIPTION,
type: 'website',
url: PAGE_URL,
siteName: 'Sim',
locale: 'en_US',
images: [
{
url: '/logo/426-240/reverse/small.png',
width: 2130,
height: 1200,
alt: 'Pricing | Sim, the AI Workspace',
type: 'image/png',
},
],
},
twitter: {
card: 'summary_large_image',
site: '@simdotai',
creator: '@simdotai',
title: TITLE,
description: DESCRIPTION,
images: {
url: '/logo/426-240/reverse/small.png',
alt: 'Pricing | Sim, the AI Workspace',
},
},
alternates: {
canonical: PAGE_URL,
languages: { 'en-US': PAGE_URL, 'x-default': PAGE_URL },
},
robots: {
index: true,
follow: true,
googleBot: { index: true, follow: true, 'max-image-preview': 'large', 'max-snippet': -1 },
},
category: 'technology',
}
})

export default async function Page({ searchParams }: { searchParams: Promise<SearchParams> }) {
await pricingSearchParamsCache.parse(searchParams)
Expand Down
53 changes: 5 additions & 48 deletions apps/sim/app/(landing)/privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -1,60 +1,17 @@
import type { Metadata } from 'next'
import { SITE_URL } from '@/lib/core/utils/urls'
import { buildLandingMetadata } from '@/lib/landing/seo'
import Privacy from '@/app/(landing)/privacy/privacy'

export const revalidate = 3600

const PAGE_URL = `${SITE_URL}/privacy`
const TITLE = 'Privacy Policy | Sim, the AI Workspace'
const DESCRIPTION =
'How Sim, the open-source AI workspace, collects, uses, and protects your data, including data obtained from Google APIs, and the controls you have over it.'

export const metadata: Metadata = {
metadataBase: new URL(SITE_URL),
title: { absolute: TITLE },
export const metadata = buildLandingMetadata({
title: TITLE,
description: DESCRIPTION,
authors: [{ name: 'Sim' }],
creator: 'Sim',
publisher: 'Sim',
openGraph: {
title: TITLE,
description: DESCRIPTION,
type: 'website',
url: PAGE_URL,
siteName: 'Sim',
locale: 'en_US',
images: [
{
url: '/logo/426-240/reverse/small.png',
width: 2130,
height: 1200,
alt: 'Privacy Policy | Sim, the AI Workspace',
type: 'image/png',
},
],
},
twitter: {
card: 'summary_large_image',
site: '@simdotai',
creator: '@simdotai',
title: TITLE,
description: DESCRIPTION,
images: {
url: '/logo/426-240/reverse/small.png',
alt: 'Privacy Policy | Sim, the AI Workspace',
},
},
alternates: {
canonical: PAGE_URL,
languages: { 'en-US': PAGE_URL, 'x-default': PAGE_URL },
},
robots: {
index: true,
follow: true,
googleBot: { index: true, follow: true, 'max-image-preview': 'large', 'max-snippet': -1 },
},
category: 'technology',
}
path: '/privacy',
})

export default function Page() {
return <Privacy />
Expand Down
Loading
Loading