mirror of
https://github.com/jlengrand/check-html-links-action-test.git
synced 2026-03-10 08:51:20 +00:00
107 lines
3.1 KiB
JavaScript
107 lines
3.1 KiB
JavaScript
const profile = {
|
|
fullName: 'Website Owner',
|
|
description: 'FRONT-END DEVELOPER',
|
|
// The basepath is the assets folder
|
|
/// the file sould be imported in assets-import.js
|
|
avatarPath: 'avatar.svg',
|
|
about: {
|
|
title: `HEY THERE!
|
|
I'M WEBSITE OWNER`,
|
|
description: `Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
|
|
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
|
|
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis.`,
|
|
findMeOn: [
|
|
{
|
|
iconName: 'location',
|
|
text: 'Location, Place',
|
|
url: '',
|
|
hoverColor: '#546e7a'
|
|
},
|
|
{
|
|
iconName: 'twitter',
|
|
text: '@username',
|
|
url: 'https://twitter.com/username',
|
|
hoverColor: '#1da1f2'
|
|
},
|
|
{
|
|
iconName: 'email',
|
|
text: 'email@email.com',
|
|
url: 'mailto://email@email.com',
|
|
hoverColor: '#546e7a'
|
|
},
|
|
{
|
|
iconName: 'lock',
|
|
text: '@kuser',
|
|
url: 'https://keybase.io/kuser',
|
|
hoverColor: '#e9641c'
|
|
}
|
|
]
|
|
},
|
|
social: [
|
|
{
|
|
iconName: 'twitter',
|
|
url: 'https://twitter.com/username',
|
|
text: "I'm on Twitter",
|
|
hoverColor: '#1da1f2'
|
|
},
|
|
{
|
|
iconName: 'telegram',
|
|
url: 'https://t.me/username',
|
|
text: "I'm on Telegram",
|
|
hoverColor: '#0088cc'
|
|
},
|
|
{
|
|
iconName: 'github',
|
|
url: 'https://github.com/username',
|
|
text: "I'm on Github",
|
|
hoverColor: '#000'
|
|
},
|
|
{
|
|
iconName: 'email',
|
|
url: 'mailto:email@email.co',
|
|
text: 'Send me an email',
|
|
hoverColor: '#000'
|
|
}
|
|
]
|
|
}
|
|
|
|
const projects = [
|
|
{
|
|
title: 'Project Title #1',
|
|
img: '',
|
|
description: 'Lorem ipsum dolor sit amet, in nulla hendrerit ius, sed et congue graeci, qui id propriae accusata.',
|
|
categories: ['Sample', 'Open source', 'React'],
|
|
siteUrl: 'https://amazing.project.com',
|
|
sourceCodeUrl: 'https://github.com/user/project'
|
|
},
|
|
{
|
|
title: 'Project Title #2',
|
|
img: 'https://www.nethruster.com/assets/img/icons/apple-touch-icon.png',
|
|
description: 'Lorem ipsum dolor sit amet, in nulla hendrerit ius, sed et congue graeci, qui id propriae accusata.',
|
|
categories: ['Sample', 'Freeware', 'Go'],
|
|
siteUrl: 'https://amazing.project.com'
|
|
},
|
|
{
|
|
title: 'Project Title #3',
|
|
img: 'https://www.nethruster.com/assets/img/wareader.svg',
|
|
description: 'Lorem ipsum dolor sit amet, in nulla hendrerit ius, sed et congue graeci, qui id propriae accusata.',
|
|
categories: ['Wat', 'Linux', 'LoL'],
|
|
sourceCodeUrl: 'https://github.com/user/:O'
|
|
}
|
|
]
|
|
|
|
const formUrl = 'http://localhost:4000'
|
|
const ReCAPTCHAKey = '6LcBOC8UAAAAAM9YRyBp1RR-1NnwvMU8UDsR63Vu'
|
|
// The basepath is the assets folder
|
|
/// the file sould be imported in assets-import.js
|
|
const missingProjectIcon = 'no-work-icon.jpg'
|
|
|
|
export {
|
|
profile,
|
|
projects,
|
|
formUrl,
|
|
ReCAPTCHAKey,
|
|
missingProjectIcon
|
|
}
|