Profile menu oluşturuldu. Bağlantı ve Page'ler eklendi.

This commit is contained in:
2025-12-03 20:36:24 +03:00
parent 642aeffcd7
commit 0759be39b4
6 changed files with 249 additions and 3 deletions

View File

@@ -0,0 +1,40 @@
<script>
// Tasarım diğer sayfalarla aynı iskelette; içerik placeholder.
</script>
<section class="files">
<div class="files-header">
<div class="header-title">
<h2>Settings</h2>
</div>
</div>
<div class="empty">Ayarlar içeriği yakında.</div>
</section>
<style>
.files {
padding: 16px;
display: flex;
flex-direction: column;
gap: 12px;
}
.files-header {
display: flex;
align-items: center;
justify-content: space-between;
}
.header-title {
display: flex;
align-items: center;
gap: 8px;
}
.empty {
padding: 24px;
border: 1px dashed var(--border, #dcdcdc);
border-radius: 10px;
color: #666;
}
</style>