This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
export type Tool = {
|
||||
slug: string;
|
||||
title: string;
|
||||
description: string;
|
||||
icon: string;
|
||||
};
|
||||
|
||||
export const tools: Tool[] = [
|
||||
{
|
||||
slug: 'watermark',
|
||||
title: 'Wasserzeichen',
|
||||
description: 'Fügen Sie ein Wasserzeichen zu Ihrem PDF hinzu.',
|
||||
icon: 'droplets'
|
||||
},
|
||||
{
|
||||
slug: 'encrypt',
|
||||
title: 'Passwort setzen',
|
||||
description: 'Verschlüsseln Sie Ihr PDF mit einem Passwort.',
|
||||
icon: 'lock'
|
||||
},
|
||||
{
|
||||
slug: 'decrypt',
|
||||
title: 'Passwort entfernen',
|
||||
description: 'Entsperren Sie ein passwortgeschütztes PDF.',
|
||||
icon: 'unlock'
|
||||
},
|
||||
{
|
||||
slug: 'convert',
|
||||
title: 'Konvertieren',
|
||||
description: 'Konvertieren Sie ein PDF in Bilder.',
|
||||
icon: 'image'
|
||||
},
|
||||
{
|
||||
slug: 'compress',
|
||||
title: 'Komprimieren',
|
||||
description: 'Komprimieren Sie ein PDF für kleinere Dateigröße.',
|
||||
icon: 'minimize'
|
||||
},
|
||||
{
|
||||
slug: 'separate',
|
||||
title: 'Seiten entfernen',
|
||||
description: 'Entfernen Sie Seiten aus einem PDF.',
|
||||
icon: 'scissors'
|
||||
},
|
||||
{
|
||||
slug: 'merge',
|
||||
title: 'PDFs zusammenfügen',
|
||||
description: 'Fügen Sie mehrere PDFs zu einer Datei zusammen.',
|
||||
icon: 'merge'
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user