Update package.json scripts, enhance layout with new components, and improve API error handling
Some checks failed
Deploy / deploy (push) Failing after 1h28m6s

- Added new scripts for database operations and temporary production in package.json.
- Integrated KaydetBannerLazy component into the layout for improved user notifications.
- Enhanced API error handling in the soru route to mark credit exhaustion.
- Updated the IletisimPage for better button styling and user experience.
- Refactored ListemPage to streamline user flow and improve session handling.
- Removed unused ListePaneli component to clean up the codebase.
This commit is contained in:
bilalgursen
2026-08-06 02:27:42 +03:00
parent 488845ae1f
commit e62c6f07df
77 changed files with 4132 additions and 1659 deletions

View File

@@ -28,7 +28,7 @@ function PromptSuggestion({
<Button
variant={variant || "outline"}
size={size || "lg"}
className={cn("rounded-full", className)}
className={cn(className)}
{...props}
>
{children}
@@ -42,7 +42,7 @@ function PromptSuggestion({
variant={variant || "ghost"}
size={size || "sm"}
className={cn(
"w-full cursor-pointer justify-start rounded-xl py-2",
"w-full cursor-pointer justify-start py-2",
"hover:bg-accent",
className
)}
@@ -63,7 +63,7 @@ function PromptSuggestion({
variant={variant || "ghost"}
size={size || "sm"}
className={cn(
"w-full cursor-pointer justify-start gap-0 rounded-xl py-2",
"w-full cursor-pointer justify-start gap-0 py-2",
"hover:bg-accent",
className
)}