'use client' import { Button } from '@/components/ui/button' import Link from 'next/link' type Props = { href: string label: string } export const BackButton = ({ href, label }: Props) => { return ( ) }