Files
ERitors-Scribe-Desktop/lib/constants/world.ts
natreex 64ed90d993 Remove unused components and models for improved maintainability
- Deleted redundant components (`AddActionButton`, `AlertBox`, `AlertStack`, `BackButton`, `CancelButton`, and `CollapsableArea`) and related files.
- Removed unused models (`Book`, `BookSerie`, `BookTables`, `Character`, and `Chapter`) to reduce codebase clutter.
- Updated project structure and references to reflect these removals.
2026-03-22 22:37:31 -04:00

31 lines
1.1 KiB
TypeScript

import {
Crown,
AlertTriangle,
Flag,
Gavel,
Factory,
Leaf,
Mountain,
Music,
ArrowLeftRight,
Snowflake,
UserCog,
Users
} from 'lucide-react';
import {ElementSection} from "@/lib/types/world";
export const elementSections: ElementSection[] = [
{title: 'Lois', section: 'laws', icon: Gavel},
{title: 'Biomes', section: 'biomes', icon: Mountain},
{title: 'Problèmes', section: 'issues', icon: AlertTriangle},
{title: 'Coutumes', section: 'customs', icon: ArrowLeftRight},
{title: 'Royaumes', section: 'kingdoms', icon: Flag},
{title: 'Climat', section: 'climate', icon: Snowflake},
{title: 'Ressources', section: 'resources', icon: Factory},
{title: 'Faune', section: 'wildlife', icon: Leaf},
{title: 'Arts', section: 'arts', icon: Music},
{title: 'Groupes ethniques', section: 'ethnicGroups', icon: Users},
{title: 'Classes sociales', section: 'socialClasses', icon: UserCog},
{title: 'Personnages importants', section: 'importantCharacters', icon: Crown},
];