mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
18 lines
515 B
JavaScript
18 lines
515 B
JavaScript
|
module.exports = {
|
||
|
// Search and metadata
|
||
|
title: 'Imagine, Program, Share',
|
||
|
description:
|
||
|
'Scratch is a free programming language and online community ' +
|
||
|
'where you can create your own interactive stories, games, ' +
|
||
|
'and animations.',
|
||
|
|
||
|
// Open graph
|
||
|
og_image: 'https://scratch.mit.edu/images/og_image.jpg',
|
||
|
og_image_type: 'image/jpeg',
|
||
|
og_image_width: 986,
|
||
|
og_image_height: 860,
|
||
|
|
||
|
// Analytics & Monitoring
|
||
|
ga_tracker: process.env.GA_TRACKER || ''
|
||
|
};
|