-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathheader.constant.ts
More file actions
34 lines (33 loc) · 913 Bytes
/
header.constant.ts
File metadata and controls
34 lines (33 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { FileSpreadsheet, Receipt } from 'lucide-react';
export const BLOCKS = [
{
icon: Receipt,
name: 'Invoices',
description: '6 pre-designed invoice layouts. Copy, paste, and customize.',
color: 'text-blue-500',
bg: 'bg-blue-50 dark:bg-blue-950/40',
isDisabled: false,
path: '/blocks/invoices',
count: 6,
},
{
icon: Receipt,
name: 'Receipts',
description: '1 compact receipt layout for checkout, payment status, and totals.',
color: 'text-amber-500',
bg: 'bg-amber-50 dark:bg-amber-950/40',
isDisabled: false,
path: '/blocks/receipts',
count: 1,
},
{
icon: FileSpreadsheet,
name: 'Reports',
description: '4 production-ready report designs for various business needs.',
color: 'text-emerald-500',
bg: 'bg-emerald-50 dark:bg-emerald-950/40',
isDisabled: false,
path: '/blocks/reports',
count: 4,
},
];