diff --git a/src/lib/components/GoodsManagersContent.svelte b/src/lib/components/GoodsManagersContent.svelte
new file mode 100644
index 0000000..2d07449
--- /dev/null
+++ b/src/lib/components/GoodsManagersContent.svelte
@@ -0,0 +1,953 @@
+
+
+
+
+
+ {#if error}
+
+ {error}
+
+ {/if}
+
+ {#if loading}
+
+ {:else if goodsManagers.length === 0}
+
+
+
Henüz Mal Sorumlusu Yok
+
Sisteme mal sorumlusu eklemek için "Yeni Mal Sorumlusu Ekle" butonuna tıklayın.
+
+
+ {:else}
+
+ {#each goodsManagers as manager (manager.id)}
+
+
+
+
+
+ 📄 Sicil No:
+ {manager.registration_number}
+
+
+ 🆔 TC Kimlik:
+ {manager.tc_kimlik}
+
+
+ 📧 E-posta:
+ {manager.email}
+
+
+ 📱 İrtibat:
+ {manager.phone}
+
+
+ 👤 Kullanıcı Adı:
+ {manager.username || 'Belirlenmemiş'}
+
+
+
+
+
+
+
+
+
+ {/each}
+
+ {/if}
+
+
+
+{#if showAddModal}
+
+
+
+ {#if error}
+
+ {error}
+
+ {/if}
+
+ {#if loading}
+
+ {:else if personnel.length === 0}
+
+
+
Henüz Personel Yok
+
Sisteme personel eklemek için "Yeni Personel Ekle" butonuna tıklayın.
+
+
+ {:else}
+
+ {#each personnel as person (person.id)}
+
+
+
+
+
+ Sicil No:
+ {person.registration_number}
+
+
+ TC Kimlik:
+ {person.tc_kimlik}
+
+
+ İrtibat:
+ {person.phone}
+
+
+
+
+
+
+
+
+
+ {/each}
+
+ {/if}
+
+
+
+{#if showAddModal}
+
+
+
+ {#if error}
+
+ {error}
+
+ {/if}
+
+ {#if loading}
+
+ {:else if units.length === 0}
+
+
+
Henüz Birlik Yok
+
Sisteme birlik eklemek için "Yeni Birlik Ekle" butonuna tıklayın.
+
+
+ {:else}
+
+ {#each units as unit (unit.id)}
+
+
+
+
+
+ STK:
+ {unit.stk}
+
+
+ BTK:
+ {unit.btk}
+
+
+
+
+
Birlik Sorumlusu
+
+
+
{unit.commander.rank} {unit.commander.full_name}
+
Sicil: {unit.commander.registration_number}
+
TC: {unit.commander.tc_kimlik}
+
İrtibat: {unit.commander.phone}
+
+
+
+
+
+
+
+
+
+ {/each}
+
+ {/if}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/lib/components/VehiclesContent.svelte b/src/lib/components/VehiclesContent.svelte
new file mode 100644
index 0000000..bf242e1
--- /dev/null
+++ b/src/lib/components/VehiclesContent.svelte
@@ -0,0 +1,640 @@
+
+
+
+
+
+ {#if error}
+
+ {error}
+
+ {/if}
+
+ {#if loading}
+
+ {:else if vehicles.length === 0}
+
+
+
Henüz Araç Yok
+
Sisteme araç eklemek için "Yeni Araç Ekle" butonuna tıklayın.
+
+
+ {:else}
+
+ {#each vehicles as vehicle (vehicle.id)}
+
+
+
+
+
+
+
+ {/each}
+
+ {/if}
+
+
+
+{#if showAddModal}
+