This commit is contained in:
2026-01-21 08:19:53 +01:00
parent 99acb37c83
commit 373e19a515
12 changed files with 738 additions and 7 deletions

View File

@@ -22,7 +22,8 @@ import {
MapPin,
CreditCard,
Video,
Users
Users,
Barcode
} from 'lucide-react';
const TOOLS = [
@@ -177,6 +178,14 @@ const TOOLS = [
href: '/tools/teams-qr-code',
color: 'text-violet-500',
bg: 'bg-violet-50'
},
{
icon: Barcode,
name: 'Barcode',
description: 'Create standard barcodes',
href: '/tools/barcode-generator',
color: 'text-slate-900',
bg: 'bg-slate-100'
}
];

View File

@@ -18,7 +18,8 @@ import {
Bitcoin,
CreditCard,
Video,
Users
Users,
Barcode
} from 'lucide-react';
const tools = [
@@ -29,7 +30,7 @@ const tools = [
{ name: 'Email', href: '/tools/email-qr-code', icon: Mail, color: 'text-amber-500', bgColor: 'bg-amber-50' },
{ name: 'SMS', href: '/tools/sms-qr-code', icon: MessageSquare, color: 'text-cyan-500', bgColor: 'bg-cyan-50' },
{ name: 'Instagram', href: '/tools/instagram-qr-code', icon: Instagram, color: 'text-pink-600', bgColor: 'bg-pink-50' },
{ name: 'TikTok', href: '/tools/tiktok-qr-code', icon: Music, color: 'text-slate-800', bgColor: 'bg-slate-100' },
{ name: 'Barcode', href: '/tools/barcode-generator', icon: Barcode, color: 'text-slate-900', bgColor: 'bg-slate-100' },
];
export function RelatedTools() {