2025-01-02 15:33:37 +11:00
import { NEXT_PUBLIC_WEBAPP_URL } from '@documenso/lib/constants/app' ;
export const appMetaTags = ( title? : string ) = > {
const description =
2025-03-24 15:55:08 +01:00
'Join BLS sign, the open signing infrastructure, and get a 10x better signing experience. Pricing starts at $30/mo. forever! Sign in now and enjoy a faster, smarter, and more beautiful document signing process. Integrates with your favorite tools, customizable, and expandable. Support our mission and become a part of our open-source community.' ;
2025-01-02 15:33:37 +11:00
return [
{
2025-03-24 15:55:08 +01:00
title : title ? ` ${ title } - BLS sign ` : 'BLS sign' ,
2025-01-02 15:33:37 +11:00
} ,
{
name : 'description' ,
content : description ,
} ,
{
name : 'keywords' ,
content :
2025-03-24 15:55:08 +01:00
'BLS sign, open source, DocuSign alternative, document signing, open signing infrastructure, open-source community, fast signing, beautiful signing, smart templates' ,
2025-01-02 15:33:37 +11:00
} ,
{
name : 'author' ,
content : 'Documenso, Inc.' ,
} ,
{
name : 'robots' ,
content : 'index, follow' ,
} ,
{
property : 'og:title' ,
2025-03-24 15:55:08 +01:00
content : 'BLS sign' ,
2025-01-02 15:33:37 +11:00
} ,
{
property : 'og:description' ,
content : description ,
} ,
{
property : 'og:image' ,
content : ` ${ NEXT_PUBLIC_WEBAPP_URL ( ) } /opengraph-image.jpg ` ,
} ,
{
property : 'og:type' ,
content : 'website' ,
} ,
{
name : 'twitter:card' ,
content : 'summary_large_image' ,
} ,
{
name : 'twitter:site' ,
content : '@documenso' ,
} ,
{
name : 'twitter:description' ,
content : description ,
} ,
{
name : 'twitter:image' ,
content : ` ${ NEXT_PUBLIC_WEBAPP_URL ( ) } /opengraph-image.jpg ` ,
} ,
] ;
} ;