- implement screenshots

- implement OG tags
This commit is contained in:
Amruth Pillai
2020-07-16 10:04:49 +05:30
parent a7657b4a5c
commit be40644497
12 changed files with 158 additions and 3 deletions
+17
View File
@@ -1,5 +1,6 @@
import React, { memo, useEffect } from 'react';
import { Slide, toast } from 'react-toastify';
import { Helmet } from 'react-helmet';
import ModalRegistrar from '../../modals/ModalRegistrar';
const Wrapper = ({ children }) => {
@@ -16,6 +17,22 @@ const Wrapper = ({ children }) => {
return (
<>
<Helmet>
<title>Reactive Resume</title>
<meta
name="description"
content="A free and open source resume builder thats built to make the mundane tasks of creating, updating and sharing your resume as easy as 1, 2, 3."
/>
<link rel="canonical" href="https://rxresu.me" />
<meta property="og:url" content="https://rxresu.me" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="A free and open source resume builder thats built to make the mundane tasks of creating, updating and sharing your resume as easy as 1, 2, 3."
/>
<meta property="og:image" content="http://rxresu.me/images/share.png" />
</Helmet>
{children}
<ModalRegistrar />