add Amharic language

This commit is contained in:
Amruth Pillai
2022-10-07 10:31:03 +02:00
parent 91e55e642c
commit b505199319
5 changed files with 15 additions and 4 deletions

View File

@ -4,6 +4,7 @@ import { Theme } from '@reactive-resume/schema';
import get from 'lodash/get';
import isEmpty from 'lodash/isEmpty';
import Markdown from '@/components/shared/Markdown';
import { useAppSelector } from '@/store/hooks';
import DataDisplay from '@/templates/shared/DataDisplay';
import { formatDateString } from '@/utils/date';
@ -23,7 +24,9 @@ const Masthead: React.FC = () => {
<div className="grid flex-1 gap-1">
<h1>{name}</h1>
<p style={{ color: theme.primary }}>{headline}</p>
<p className="opacity-75">{summary}</p>
<p className="opacity-75">
<Markdown>{summary}</Markdown>
</p>
</div>
{photo.visible && !isEmpty(photo.url) && (