Update Next.js configuration and package dependencies
All checks were successful
Deploy / deploy (push) Successful in 9m29s

- Modified redirects in next.config.ts to change the destination for "/sohbet" to "/listem".
- Added new dependencies in package.json: marked, motion, react-markdown, remark-breaks, remark-gfm, shiki, and use-stick-to-bottom.
- Updated pnpm-lock.yaml to reflect the new package versions and dependencies.
- Removed obsolete stack files for Flutter, Nuxt, Nuxt.js, React Native, and Svelte from the UI/UX Pro Max skill data.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
bilalgursen
2026-07-26 04:26:52 +03:00
parent 1d0328d8eb
commit 209d203fe8
59 changed files with 6599 additions and 1446 deletions

View File

@@ -48,7 +48,9 @@ export function HeroForm() {
}
}
// Seçimler tamam: sonuç sayfası (ve sonrası) kullanabilsin diye sakla, yönlendir.
// Seçimler tamam: sakla ve giriş kapısına yönlendir. Girişli kullanıcıyı
// /giris zaten callback'e (sonuç + otomatik üretim) sektirir; girişsiz
// kullanıcı listeyi görmeden önce funnel'lı giriş ekranıyla karşılaşır.
function secimleriTamamla(secimler: SihirbazSecimleri) {
if (!sira) return;
try {
@@ -58,7 +60,8 @@ export function HeroForm() {
);
} catch {}
setModalAcik(false);
router.push(`/sonuc?sira=${sira}&tur=${TUR}`);
const geri = `/sonuc?sira=${sira}&tur=${TUR}&sihirbaz=1`;
router.push(`/giris?callback=${encodeURIComponent(geri)}`);
}
return (