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