Skip to content

Commit 3d1c2fd

Browse files
committed
Feat: DHCP Option 60 Builder
1 parent e849ead commit 3d1c2fd

File tree

8 files changed

+2448
-1
lines changed

8 files changed

+2448
-1
lines changed

src/lib/components/home/HomepageCategories.svelte

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,14 @@
3737
'/ip-address-convertor': 'hash',
3838
'/dns': 'server',
3939
'/diagnostics': 'activity',
40+
'/dhcp': 'wifi',
4041
'/reference': 'book-open',
4142
};
4243
return iconMap[path] || 'folder';
4344
}
4445
4546
// Define desired category order using paths (more maintainable than indexes)
46-
const categoryOrder = ['/diagnostics', '/subnetting', '/dns', '/cidr', '/reference'];
47+
const categoryOrder = ['/diagnostics', '/subnetting', '/dns', '/cidr', '/dhcp', '/reference'];
4748
4849
// Memoized categories - computed once at module scope (static data)
4950
const categories: CategorySection[] = categoryOrder
@@ -459,6 +460,10 @@
459460
grid-row: span 2;
460461
}
461462
463+
.category-reference {
464+
grid-column: 1 / -1;
465+
}
466+
462467
// Full width sections
463468
.full-width {
464469
grid-column: 1 / -1;

0 commit comments

Comments
 (0)