mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 16:22:59 +10:00
- add app version
- fix bugs with artboard
This commit is contained in:
@ -51,6 +51,14 @@ I try to do what I can, but if you found the app helpful, or you're in a better
|
|||||||
|
|
||||||
#### https://www.buymeacoffee.com/AmruthPillai
|
#### https://www.buymeacoffee.com/AmruthPillai
|
||||||
|
|
||||||
|
### Changelog
|
||||||
|
|
||||||
|
#### 17th July 2020
|
||||||
|
|
||||||
|
- Some Bugfixes
|
||||||
|
- Added Kannaded Translation
|
||||||
|
- Update to v2.0.0
|
||||||
|
|
||||||
### Appreciation
|
### Appreciation
|
||||||
|
|
||||||
Thank you to everyone who made this project possible, including the many users who voiced their opinions, created issues and PRs to the original Reactive Resume project, and helped me along the way to make this a reality.
|
Thank you to everyone who made this project possible, including the many users who voiced their opinions, created issues and PRs to the original Reactive Resume project, and helped me along the way to make this a reality.
|
||||||
|
|||||||
@ -40,15 +40,6 @@
|
|||||||
"value": "cache-control: public, max-age=86400, must-revalidate"
|
"value": "cache-control: public, max-age=86400, must-revalidate"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"source": "page-data/**",
|
|
||||||
"headers": [
|
|
||||||
{
|
|
||||||
"key": "cache-control",
|
|
||||||
"value": "cache-control: public, max-age=86400, must-revalidate"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,6 +5,7 @@ module.exports = {
|
|||||||
title: 'Reactive Resume',
|
title: 'Reactive Resume',
|
||||||
siteUrl: 'https://rxresu.me',
|
siteUrl: 'https://rxresu.me',
|
||||||
description: 'A free and open source resume builder.',
|
description: 'A free and open source resume builder.',
|
||||||
|
version: '2.0.0',
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
'gatsby-plugin-react-helmet',
|
'gatsby-plugin-react-helmet',
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
zoom: 0.5;
|
zoom: 0.5;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
box-shadow: var(--shadow);
|
box-shadow: var(--shadow);
|
||||||
@apply my-16 rounded;
|
@apply my-16 bg-white rounded;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -2,6 +2,7 @@ import React, { memo } from 'react';
|
|||||||
import { FaCoffee, FaBug, FaExternalLinkAlt } from 'react-icons/fa';
|
import { FaCoffee, FaBug, FaExternalLinkAlt } from 'react-icons/fa';
|
||||||
import { MdCode } from 'react-icons/md';
|
import { MdCode } from 'react-icons/md';
|
||||||
import { Trans, useTranslation } from 'react-i18next';
|
import { Trans, useTranslation } from 'react-i18next';
|
||||||
|
import { useStaticQuery, graphql } from 'gatsby';
|
||||||
import Button from '../../../shared/Button';
|
import Button from '../../../shared/Button';
|
||||||
import Heading from '../../../shared/Heading';
|
import Heading from '../../../shared/Heading';
|
||||||
import styles from './About.module.css';
|
import styles from './About.module.css';
|
||||||
@ -9,6 +10,16 @@ import styles from './About.module.css';
|
|||||||
const About = ({ id }) => {
|
const About = ({ id }) => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
|
|
||||||
|
const { site } = useStaticQuery(graphql`
|
||||||
|
query {
|
||||||
|
site {
|
||||||
|
siteMetadata {
|
||||||
|
version
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section>
|
<section>
|
||||||
<Heading id={id} />
|
<Heading id={id} />
|
||||||
@ -79,13 +90,15 @@ const About = ({ id }) => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="my-4 text-center opacity-50 text-sm">
|
<div className="my-4 text-center opacity-50 text-sm flex flex-col items-center justify-center">
|
||||||
<Trans t={t} i18nKey="builder.about.footer">
|
<Trans t={t} i18nKey="builder.about.footer">
|
||||||
A
|
A
|
||||||
<a href="https://amruthpillai.com" rel="noreferrer" target="_blank">
|
<a href="https://amruthpillai.com" rel="noreferrer" target="_blank">
|
||||||
B
|
B
|
||||||
</a>
|
</a>
|
||||||
</Trans>
|
</Trans>
|
||||||
|
|
||||||
|
<span className="mt-2 font-medium">v{site.siteMetadata.version}</span>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -80,7 +80,7 @@ const Settings = ({ id }) => {
|
|||||||
<Trans t={t} i18nKey="builder.settings.translate">
|
<Trans t={t} i18nKey="builder.settings.translate">
|
||||||
A
|
A
|
||||||
<a
|
<a
|
||||||
href="https://github.com/AmruthPillai/Reactive-Resume/blob/master/TRANSLATING.md"
|
href="https://github.com/AmruthPillai/Reactive-Resume#translation"
|
||||||
rel="noreferrer"
|
rel="noreferrer"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user