Created
September 20, 2019 21:51
-
-
Save abedzantout/7600bfce83cfa31b77946e4b14fe9bd7 to your computer and use it in GitHub Desktop.
Meta tags constants
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { PageType, RobotsContent, Tag } from '../interfaces/tag'; | |
| import { concatenateStrings } from '../shared/helpers/helper'; | |
| export const defaultMetaTags: Tag = { | |
| canonical: 'https://www.techhive.io', | |
| description: 'Pushing you to the edge of technological innovation', | |
| image: 'https://www.techhive.io/image.png', | |
| robots: concatenateStrings(RobotsContent.index, RobotsContent.follow), | |
| title: 'Techhive.IO', | |
| type: PageType.website | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment