Skip to content

Instantly share code, notes, and snippets.

@abedzantout
Created September 20, 2019 21:51
Show Gist options
  • Save abedzantout/7600bfce83cfa31b77946e4b14fe9bd7 to your computer and use it in GitHub Desktop.
Save abedzantout/7600bfce83cfa31b77946e4b14fe9bd7 to your computer and use it in GitHub Desktop.
Meta tags constants
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