portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
48 lines (43 loc) • 2.09 kB
text/typescript
const title = 'Stóllinn';
const description = 'Skoðaðu yfirlit yfir allar þínar þjónustur hjá Nova í stólnum';
const image = '/assets/facebook-share.jpg';
export const helmet = {
title,
titleTemplate: '%s | Nova',
htmlAttributes: { lang: 'is' },
meta: [
{ name: 'description', content: description },
{ name: 'viewport', content: 'width=device-width, initial-scale=1, user-scalable=no' },
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black' },
{ name: 'msapplication-navbutton-color', content: '#e52e64' },
{ name: 'msapplication-TileColor', content: '#e52e64' },
{ name: 'theme-color', content: '#e52e64' },
{ name: 'image', content: image },
{ property: 'og:title', content: title },
{ property: 'og:description', content: description },
{ property: 'og:image', content: image },
{ property: 'og:image:width', content: '880px' },
{ property: 'og:image:height', content: '440px' },
{ property: 'og:image:alt', content: description },
{ property: 'og:type', content: 'website' },
{ property: 'og:site_name', content: 'Nova' },
{ name: 'twitter:title', content: title },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:image', content: image },
{ name: 'twitter:site', content: '@nova_island' },
{ name: 'twitter:creator', content: '@nova_island' },
{ name: 'twitter:description', content: description },
{ property: 'fb:pages', content: '63373726728' },
{
property: 'google-site-verification',
content: 'rlhoxkR3R5bdJQkc_mlLqxqg8788BEhydyVGAmhWLVc',
},
],
link: [
{ rel: 'icon', sizes: '16x16 32x32', href: '/assets/favicon.ico' },
{ rel: 'icon', sizes: '32x32', href: '/assets/favicon-32x32.png', type: 'image/png' },
{ rel: 'icon', sizes: '96x96', href: '/assets/favicon-96x96.png', type: 'image/png' },
{ rel: 'icon', sizes: '128x128', href: '/assets/favicon-128.png', type: 'image/png' },
{ rel: 'icon', sizes: '196x196', href: '/assets/favicon-196x196.png', type: 'image/png' },
],
};