New centered images
This commit is contained in:
parent
1c23028dbc
commit
57221e343f
@ -3,7 +3,9 @@
|
||||
<h1>Bento: 🍱 A Clean and Simple Startpage</h1>
|
||||
</div>
|
||||
|
||||

|
||||
<p align="center">
|
||||
<img src="https://github.com/MiguelRAvila/Bento/blob/master/assets/preview.png">
|
||||
</p>
|
||||
|
||||
### Index
|
||||
|
||||
|
94
js/config.js
Normal file
94
js/config.js
Normal file
@ -0,0 +1,94 @@
|
||||
class Config {
|
||||
constructor() {}
|
||||
|
||||
getQuickLinks() {
|
||||
const quickLinks = [
|
||||
{
|
||||
site: 'Reddit',
|
||||
icon: 'reddit',
|
||||
url: 'https://reddit.com/',
|
||||
},
|
||||
{
|
||||
site: 'Github',
|
||||
icon: 'github',
|
||||
url: 'https://github.com/',
|
||||
},
|
||||
{
|
||||
site: 'Facebook',
|
||||
icon: 'facebook',
|
||||
url: 'https://facebook.com/',
|
||||
},
|
||||
{
|
||||
site: 'Gmail',
|
||||
icon: 'gmail',
|
||||
url: 'https://mail.google.com/',
|
||||
},
|
||||
{
|
||||
site: 'Youtube',
|
||||
icon: 'youtube',
|
||||
url: 'https://youtube.com/',
|
||||
},
|
||||
{
|
||||
site: 'GDrive',
|
||||
icon: 'gdrive',
|
||||
url: 'https://drive.google.com/',
|
||||
},
|
||||
];
|
||||
|
||||
return quickLinks;
|
||||
}
|
||||
|
||||
getFirstList() {
|
||||
const firstList = [
|
||||
{
|
||||
site: 'Reddit',
|
||||
icon: 'reddit',
|
||||
url: 'https://reddit.com/',
|
||||
},
|
||||
{
|
||||
site: 'Github',
|
||||
icon: 'github',
|
||||
url: 'https://github.com/',
|
||||
},
|
||||
{
|
||||
site: 'Facebook',
|
||||
icon: 'facebook',
|
||||
url: 'https://facebook.com/',
|
||||
},
|
||||
{
|
||||
site: 'Gmail',
|
||||
icon: 'gmail',
|
||||
url: 'https://mail.google.com/',
|
||||
},
|
||||
];
|
||||
|
||||
return firstList;
|
||||
}
|
||||
|
||||
getSecondList() {
|
||||
const secondList = [
|
||||
{
|
||||
site: 'Reddit',
|
||||
icon: 'reddit',
|
||||
url: 'https://reddit.com/',
|
||||
},
|
||||
{
|
||||
site: 'Github',
|
||||
icon: 'github',
|
||||
url: 'https://github.com/',
|
||||
},
|
||||
{
|
||||
site: 'Facebook',
|
||||
icon: 'facebook',
|
||||
url: 'https://facebook.com/',
|
||||
},
|
||||
{
|
||||
site: 'Gmail',
|
||||
icon: 'gmail',
|
||||
url: 'https://mail.google.com/',
|
||||
},
|
||||
];
|
||||
|
||||
return secondList;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user