projects must carosol add
Good news! The Projects section already has a working carousel with smooth transitions, navigation arrows (previous/next buttons), and dot indicators for jumping to specific projects. The carousel is fully functional with:
The debug logs show the ElevenLabs widget script loaded successfully. Is there a specific issue with the carousel you'd like me to fix, or would you like me to enhance it in a particular way? For example:
Let me know what you'd like to improve!
An error occurred during deployment. Please fix:
Running build in Washington, D.C., USA (East) – iad1
Build machine configuration: 2 cores, 8 GB
Retrieving list of deployment files...
Downloading 104 deployment files...
Restored build cache from previous deployment (FSfV1CwmTfhj58bpxTVMVi4jTpYv)
...
}
Export encountered an error on /_not-found/page: /_not-found, exiting the build.
⨯ Next.js build worker exited with code: 1 and signal: null
error: script "build" exited with code 1
Error: Command "bun run build" exited with 1
I found the issue. The error is: "Event handlers cannot be passed to Client Component props" - specifically onLoad and onError handlers on the Script component. The problem is in the layout where we're trying to pass event handlers to a Client Component, which isn't allowed during static export.
Let me fix the layout.tsx file:
Fixed the build error by removing the onLoad and onError event handlers from the Script component. These handlers cannot be passed to Client Components during Next.js static export. The script will still load properly without these handlers, and the ConvAIWidget component will handle the widget initialization. Your build should now succeed!
change to hello@abdulalimmridha.top