-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseo.js
29 lines (23 loc) · 1.14 KB
/
seo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { Languages } from './types';
import previewImage from '$images/preview-image.png';
import previewImageSquare from '$images/preview-image-square.jpg';
export const SITE_TITLE = 'Vida Migrante';
export const SITE_URL = 'https://vidamigrante.migration.mit.edu';
export const TWITTER_HANDLE = '@CivicDataDesign';
export const AUTHOR = 'Civic Data Design Lab';
export const DESCRIPTION = {
[Languages.ENGLISH]: `Vida Migrante: Venezuelan Migrants Inclusion in Ecuador is a research project analyzing the food security, economic conditions, trade-offs and inclusion of recent Venezuelan migrants in Ecuador.`,
[Languages.SPANISH]: `Vida Migrante: Inclusión de Migrantes Venezolanos en Ecuador es un proyecto de investigación que analiza la seguridad alimentaria, condiciones económicas, ingresos e inclusión de migrantes venezolanos recientes en Ecuador.`,
};
export const PREVIEW_IMAGE = {
src: previewImage,
width: 770,
height: 576,
alt: 'Image of life event card during the game',
};
export const PREVIEW_IMAGE_SQUARE = {
src: previewImageSquare,
width: 828,
height: 828,
alt: 'Square image of front page and website title',
};