added mail service

This commit is contained in:
2024-04-10 21:24:25 +03:00
parent c76d4b9717
commit 78107d4ec7
80 changed files with 3478 additions and 329 deletions

View File

@@ -0,0 +1,18 @@
'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 (
<Button variant="link" size="sm"
className="font-normal w-full" asChild>
<Link href={href}>{label}</Link>
</Button>
)
}