2023-11-28 12:39:06 +03:00

14 lines
452 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Heading } from '@repo/ui';
import Link from 'next/link';
export function Header({ link, title }: { readonly link: string; readonly title: string }) {
return (
<div className="flex flex-col justify-between md:flex-row">
<Heading size={2}>{title}</Heading>
<Link href={link} className="text-primary-600 text-sm font-medium hover:underline" prefetch>
Посмотреть условия
</Link>
</div>
);
}