Änderungen an Branding - App Name

This commit is contained in:
2025-03-24 15:55:08 +01:00
parent 063fd32f18
commit d2b83af9ea
58 changed files with 122 additions and 124 deletions

View File

@@ -6,15 +6,15 @@ import type { Route } from './+types/share.$slug';
export function meta({ params: { slug } }: Route.MetaArgs) {
return [
{ title: 'Documenso - Share' },
{ description: 'I just signed a document in style with Documenso!' },
{ title: 'BLS sign - Share' },
{ description: 'I just signed a document in style with BLS sign!' },
{
property: 'og:title',
content: 'Documenso - Join the open source signing revolution',
content: 'BLS sign - Join the open source signing revolution',
},
{
property: 'og:description',
content: 'I just signed with Documenso!',
content: 'I just signed with BLS sign!',
},
{
property: 'og:type',
@@ -38,7 +38,7 @@ export function meta({ params: { slug } }: Route.MetaArgs) {
},
{
name: 'twitter:description',
content: 'I just signed with Documenso!',
content: 'I just signed with BLS sign!',
},
];
}
@@ -50,8 +50,8 @@ export const loader = ({ request }: Route.LoaderArgs) => {
return null;
}
// Is hardcoded because this whole meta is hardcoded anyway for Documenso.
throw redirect('https://documenso.com');
// Is hardcoded because this whole meta is hardcoded anyway for BLS sign.
throw redirect('https://bls.media/');
};
export default function SharePage() {