moduler sayfa yapısına gecıldı

This commit is contained in:
2026-07-27 05:28:07 +02:00
parent e4b3ba76d7
commit cfa70819fe
4 changed files with 141 additions and 172 deletions
+15
View File
@@ -0,0 +1,15 @@
export function renderDesktop() {
const html = `
<div class="bg-slate-900/40 backdrop-blur-2xl border border-white/10 p-8 rounded-3xl shadow-2xl max-w-lg w-full text-center space-y-4">
<div class="inline-flex p-3 bg-indigo-500/20 border border-indigo-500/30 rounded-2xl text-indigo-300 text-3xl">
</div>
<h2 class="text-3xl font-bold text-white">Masaüstü</h2>
<p class="text-slate-300 text-sm leading-relaxed">
Modüler mimariye geçtik! Arka planı değiştirmek için sol menüdeki <b>Ayarlar</b> sekmesine geçebilirsin.
</p>
</div>
`
return { html, initEvents: () => {} }
}