mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-17 02:01:29 +10:00
completed translation extraction of profile and work
This commit is contained in:
@ -1,19 +1,22 @@
|
||||
import React from 'react';
|
||||
import { Trans } from 'react-i18next';
|
||||
|
||||
const MarkdownHelpText = ({ className }) => {
|
||||
return (
|
||||
<div className={className}>
|
||||
<p className="text-gray-800 text-xs">
|
||||
You can use{' '}
|
||||
<a
|
||||
className="text-blue-600 hover:underline"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet"
|
||||
>
|
||||
GitHub Flavored Markdown
|
||||
</a>{' '}
|
||||
to style this section of text.
|
||||
<Trans i18nKey="markdownHelpText">
|
||||
You can use
|
||||
<a
|
||||
className="text-blue-600 hover:underline"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet"
|
||||
>
|
||||
GitHub Flavored Markdown
|
||||
</a>
|
||||
to style this section of text.
|
||||
</Trans>
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user