fix: make mails dynamic
This commit is contained in:
parent
bf134a99d5
commit
20eef84823
@ -156,7 +156,7 @@ export default function LoginPage() {
|
||||
<p>
|
||||
{t('auth.loginIssues')}{' '}
|
||||
<Link
|
||||
href='mailto:info@oriyo.tj'
|
||||
href={`mailto:${t('auth.loginForm.contactUs.mail')}`}
|
||||
className='text-red-600 hover:underline'
|
||||
>
|
||||
{t('auth.contactLink')}
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
'use client';
|
||||
|
||||
import { Briefcase } from 'lucide-react';
|
||||
import Link from 'next/link';
|
||||
|
||||
import { Jobs } from '@/app/api-utlities/@types/index';
|
||||
|
||||
@ -16,7 +17,6 @@ import {
|
||||
TabsList,
|
||||
TabsTrigger,
|
||||
} from '@/shared/shadcn-ui/tabs';
|
||||
import Link from 'next/link';
|
||||
|
||||
interface VacanciesSectionProps {
|
||||
jobs: Jobs;
|
||||
@ -131,7 +131,7 @@ const Vacancy = ({ jobTitle, location, tags }: VacancyProps) => {
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
<Link href='mailto:info@oriyo.tj'>
|
||||
<Link href={`mailto:${t('home.vacancies.vacancy.applyToMail')}`}>
|
||||
<Button variant='outline' size='sm'>
|
||||
{t('common.buttons.apply')}
|
||||
</Button>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user