function Intro() {


const about = `We are a small team of JavaScript developers creating fast and intuitive Apps with unique UI, using modern web technologies (JavaScript, PHP, Web APIs, WPGraphQL).`
console.log(about)

}

function Projects() {


let projects = []
projects[0] = {

name  : 'News Grid',
descr : 'RSS News Reader',
url   : 'https://www.microsoft.com/store/apps/9nblggh52ljp',
type  : ['Windows 10 UWP App', 'JavaScript', 'Inhouse']

}
projects[1] = {

name  : 'Zvuk Player',
descr : 'Online music player',
url   : 'https://zvuk.app',
type  : ['Web App', 'PWA', 'JavaScript', 'Inhouse']

}
projects.map(project => console.log(project))


}

function Contacts() {


const mail = 'info@function.fish'
console.log(mail)

}