nuxt webiste not working
when i try to go anywhere besides the landing page i get error 500
"500
Error
Couldn't resolve component "default" at "/docs""
"500
Error
Couldn't resolve component "default" at "/docs""

resolveComponent helper or importing them directly from #components. Here's an example:error.vue file in your project's source directory. Here's an example:resolveComponent#componentserror.vue **Error Page** (<https://nuxt.com/docs/getting-started/error-handling#error-page>)
4. If you're deploying your Nuxt application, ensure that you've followed the correct deployment steps for your hosting environment. For example, if you're using static hosting, make sure you've generated your site correctly: <script setup lang="ts">
import { SomeComponent } from '#components'
const MyButton = resolveComponent('MyButton')
</script>
<template>
<component :is="clickable ? MyButton : 'div'" />
<component :is="SomeComponent" />
</template>