Profile menu oluşturuldu. Bağlantı ve Page'ler eklendi.
This commit is contained in:
40
client/src/routes/Settings.svelte
Normal file
40
client/src/routes/Settings.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user