So,
I am getting this error when bulding the app:
Type error: Page "src/app/detailed_view/page.tsx" does not match the required types of a Next.js Page.
"CardDemo" is not a valid Page export field.
Snippet:
type CardProps = React.ComponentProps<typeof Card>
export default function CardDemo({ className, ...props }: CardProps) {
const searchparams = useSearchParams()
const name = searchparams.get('name')