├── .browserslistrc ├── .eleventy.js ├── .gitignore ├── .postcssrc ├── .sassrc.js ├── LICENSE ├── README.md ├── package-lock.json ├── package.json └── src ├── 404.njk ├── 500.njk ├── components ├── card-media.njk ├── card-stats.njk ├── dropdown-filters.njk ├── dropdown-more.njk └── table-projects.njk ├── data ├── helper.js ├── nav.json ├── profile.json ├── projects.js ├── site.json └── user_activities.js ├── img ├── covers │ ├── img-1.jpg │ ├── img-2.jpg │ └── img-profile.jpg ├── logos │ ├── clever-dark-sm.svg │ ├── clever-dark.svg │ ├── clever-light-sm.svg │ ├── clever-light.svg │ ├── clever-primary-sm.svg │ └── clever-primary.svg ├── media │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ ├── img-5.jpg │ ├── img-6.jpg │ ├── img-800x800-1.jpg │ ├── img-800x800-2.jpg │ ├── img-800x800-3.jpg │ ├── img-800x800-4.jpg │ ├── img-800x800-5.jpg │ ├── img-800x800-6.jpg │ ├── img-800x800-7.jpg │ └── img-800x800-8.jpg ├── people │ ├── img-1.jpg │ ├── img-10.jpg │ ├── img-11.jpg │ ├── img-12.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── img-4.jpg │ ├── img-5.jpg │ ├── img-6.jpg │ ├── img-7.jpg │ ├── img-8.jpg │ ├── img-9.jpg │ └── img-profile.jpg └── social │ ├── airbnb.svg │ ├── amazon.svg │ ├── bootstrap.svg │ ├── codepen.svg │ ├── dribbble.svg │ ├── facebook.svg │ ├── flickr.svg │ ├── github.svg │ ├── google.svg │ ├── hangout.svg │ ├── instagram.svg │ ├── itunes.svg │ ├── linkedin.svg │ ├── medium.svg │ ├── pinterest.svg │ ├── skype.svg │ ├── slack.svg │ ├── snapchat.svg │ ├── spotify.svg │ ├── treehouse.svg │ ├── twitter.svg │ ├── uber.svg │ ├── viber.svg │ ├── vimeo.svg │ ├── weechat.svg │ ├── whatsapp.svg │ ├── wikipedia.svg │ ├── workplace.svg │ ├── yelp.svg │ └── youtube.svg ├── includes ├── layouts │ ├── auth.njk │ └── base.njk ├── meta.njk ├── partials │ ├── header-base.njk │ ├── header-profile.njk │ ├── header.njk │ ├── navbar-nav-docs.njk │ ├── navbar-nav-list.njk │ └── sidebar.njk └── styles.njk ├── index.njk ├── js ├── main.js └── theme-styles.js ├── pages ├── account.njk ├── login.njk ├── profile.njk └── settings.njk ├── scss ├── main.scss ├── themes │ └── _default.scss ├── user │ └── _custom.scss └── utilities.scss └── svg ├── icons ├── github.svg └── google.svg ├── illustrations └── development.svg ├── social ├── airbnb.svg ├── amazon.svg ├── bootstrap.svg ├── codepen.svg ├── dribbble.svg ├── facebook.svg ├── flickr.svg ├── github.svg ├── google.svg ├── hangout.svg ├── instagram.svg ├── itunes.svg ├── linkedin.svg ├── medium.svg ├── pinterest.svg ├── skype.svg ├── slack.svg ├── snapchat.svg ├── spotify.svg ├── treehouse.svg ├── twitter.svg ├── uber.svg ├── viber.svg ├── vimeo.svg ├── weechat.svg ├── whatsapp.svg ├── wikipedia.svg ├── workplace.svg ├── yelp.svg └── youtube.svg └── technologies ├── bootstrap.svg ├── css3.svg ├── figma.svg ├── html5.svg ├── jquery.svg ├── js.svg ├── laravel.svg ├── photoshop.svg ├── reactjs.svg ├── sass.svg ├── sketch.svg ├── svg.svg ├── vue.svg ├── wordpress.svg └── xd.svg /.browserslistrc: -------------------------------------------------------------------------------- 1 | # https://github.com/browserslist/browserslist#readme 2 | 3 | >= 0.5% 4 | last 2 major versions 5 | not dead 6 | Chrome >= 60 7 | Firefox >= 60 8 | Firefox ESR 9 | iOS >= 12 10 | Safari >= 12 11 | not Explorer <= 11 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .parcel-cache/ 3 | .cache 4 | dist 5 | -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- 1 | { 2 | "modules": false, 3 | "plugins": { 4 | "autoprefixer": { 5 | "grid": true 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.sassrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "includePaths": ["node_modules"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Webpixels 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-dashboard-kit", 3 | "description": "The perfect starting point for your next web app built with Bootstrap 5. A free and minimal starter kit to build fast and modern dashboards and applications.", 4 | "version": "1.0.0", 5 | "author": "webpixels", 6 | "license": "MIT", 7 | "scripts": { 8 | "start": "run-p serve:eleventy watch:parcel", 9 | "serve:eleventy": "cross-env ELEVENTY_ENV=local eleventy --serve", 10 | "watch:parcel": "run-p watch:css watch:js", 11 | "watch:css": "parcel watch ./src/scss/*.scss --dist-dir ./dist/css", 12 | "watch:js": "parcel watch ./src/js/main.js --dist-dir ./dist/js", 13 | "watch:images": "parcel watch ./src/img/*", 14 | "build": "run-s clean build:parcel build:eleventy", 15 | "build:eleventy": "cross-env ELEVENTY_ENV=production eleventy", 16 | "build:parcel": "run-p build:css build:js build:images", 17 | "build:css": "parcel build ./src/scss/*.scss --dist-dir ./dist/css", 18 | "build:js": "parcel build ./src/js/main.js --dist-dir ./dist/js", 19 | "build:images": "parcel build src/assets/img/*", 20 | "dev": "run-s clean build:parcel dev:eleventy", 21 | "dev:eleventy": "cross-env ELEVENTY_ENV=development eleventy", 22 | "clean": "rm -rf dist" 23 | }, 24 | "repository": { 25 | "type": "git", 26 | "url": "git+https://github.com/webpixels/bootstrap-dashboard-kit.git" 27 | }, 28 | "bugs": { 29 | "url": "https://github.com/webpixels/bootstrap-dashboard-kit/issues" 30 | }, 31 | "homepage": "https://github.com/webpixels/bootstrap-dashboard-kit#readme", 32 | "keywords": [ 33 | "webpixels", 34 | "11ty", 35 | "bootstrap", 36 | "css", 37 | "sass", 38 | "js", 39 | "mobile-first", 40 | "responsive", 41 | "front-end", 42 | "dashboard", 43 | "application", 44 | "components", 45 | "utilities", 46 | "starter", 47 | "template" 48 | ], 49 | "devDependencies": { 50 | "@11ty/eleventy": "^1.0.0", 51 | "@11ty/eleventy-plugin-syntaxhighlight": "^3.2.2", 52 | "@parcel/transformer-sass": "^2.2.1", 53 | "autoprefixer": "^10.4.2", 54 | "cross-env": "^7.0.3", 55 | "eleventy-plugin-toc": "^1.1.5", 56 | "html-minifier": "^4.0.0", 57 | "js-beautify": "^1.14.0", 58 | "markdown-it": "^12.3.2", 59 | "markdown-it-anchor": "^8.4.1", 60 | "markdown-it-emoji": "^2.0.0", 61 | "npm-run-all": "^4.1.5", 62 | "nunjucks": "^3.2.3", 63 | "parcel": "^2.2.1", 64 | "postcss": "^8.4.5", 65 | "sass": "^1.49.0" 66 | }, 67 | "dependencies": { 68 | "@popperjs/core": "^2.11.0", 69 | "@webpixels/css": "^1.1.92", 70 | "bootstrap": "^5.1.3" 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /src/404.njk: -------------------------------------------------------------------------------- 1 | Error 2 | -------------------------------------------------------------------------------- /src/500.njk: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /src/components/card-media.njk: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | ... 5 | 6 |
7 |
8 |
{{ title }}
9 |
10 |
11 | Private 12 |
13 |
14 | 3 hrs ago 15 |
16 |
17 | {{ subtitle }} 18 |
19 |
20 | -------------------------------------------------------------------------------- /src/components/card-stats.njk: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{ title }} 6 | {{ value }} 7 |
8 |
9 |
10 | 11 |
12 |
13 |
14 | {% if badge %} 15 |
16 | 17 | {{ badge.text }} 18 | 19 | {{ badge.helper }} 20 |
21 | {% endif %} 22 |
23 |
24 | -------------------------------------------------------------------------------- /src/components/dropdown-filters.njk: -------------------------------------------------------------------------------- 1 |
2 | 8 |
9 | -------------------------------------------------------------------------------- /src/components/dropdown-more.njk: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /src/components/table-projects.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | {% if content %} 14 | {% for item in content.slice(0, limit) %} 15 | 16 | 22 | 25 | 30 | 43 | 53 | 59 | 60 | {% endfor %} 61 | {% endif %} 62 | 63 |
NameDue DateStatusTeamCompletion
17 | ... 18 | 19 | {{ item.name }} 20 | 21 | 23 | {{ item.date }} 24 | 26 | 27 | {{ item.badge.text }} 28 | 29 | 31 | 42 | 44 |
45 | {{ item.progress.value }}% 46 |
47 |
48 |
49 |
50 |
51 |
52 |
54 | View 55 | 58 |
64 | -------------------------------------------------------------------------------- /src/data/helper.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | var getSlug = function (filename) { 4 | var slug = path.dirname(filename).split('/').pop().toString().replaceAll('_', '-'); 5 | 6 | return slug; 7 | } 8 | 9 | // Random person name generator 10 | 11 | var names = [ 12 | 'Robert Fox', 'Darlene Robertson', 'Theresa Webb', 'Kristin Watson', 'Cody Fisher', 'Jane Cooper', 'Jerome Bell', 'Jenny Wilson', 'Darrell Steward', 'Savannah Nguyen' 13 | ]; 14 | 15 | var emails = [ 16 | 'robert.fox@example.com', 'darlene@example.com', 'theresa.webb@example.com', 'cody.fisher@example.com', 'jane.cooper@example.com', 'jerome@example.com', 'jenny.wilson@example.com', 'darrell.steward@example.com', 'savannah@example.com' 17 | ]; 18 | 19 | var occupations = [ 20 | 'Web Designer', 'Developer', 'Marketing Specialist', 'Sales Manager', 'UI Designer', 'PHP Programmer' 21 | ]; 22 | 23 | var avatars = [ 24 | '/img/people/img-1.jpg', '1610271340738-726e199f0258', '1610878722345-79c5eaf6a48c', '1612422656768-d5e4ec31fac0', '1608976328267-e673d3ec06ce', '1610564558732-a36a4e28151c', '1604695753685-20e756f4aa61', '1611880147493-7542bdb0f024', '1608549036505-ead5b1de5417', '1591258739299-5b65d5cbb235' 25 | ]; 26 | 27 | var phones = [ 28 | '202-555-0152', '224-567-2662', '401-505-6800', '307-560-8817', '202-985-6674', '407-213-6856', '303-572-7397', '206-694-8841', '202-609-5253', '214-798-6124' 29 | ]; 30 | 31 | var companies = [ 32 | 'Dribbble', 'Netguru', 'Figma', 'Mailchimp', 'Webpixels', 'Microsoft', 'Vimeo', 'Spotify', 'Airbnb', 'Instagram' 33 | ]; 34 | 35 | var logos = [ 36 | 'logo-1.png', 'logo-2.png', 'logo-3.png', 'logo-4.png', 'logo-5.png', 'logo-6.png', 'logo-7.png', 'logo-8.png', 'logo-9.png', 'logo-10.png' 37 | ]; 38 | 39 | var industries = [ 40 | 'Design', 'Retail', 'Technology', 'E-commerce', 'Web Development', 'Software', 'Advertising', 'Music', 'Movies', 'Blogging' 41 | ]; 42 | 43 | var cities = [ 44 | 'Los Angeles', 'New York', 'San Francisco', 'Bucharest', 'Cluj', 'Athens', 'Rome', 'Lisbon', 'Paris', 'Berlin' 45 | ]; 46 | 47 | var tasks = [ 48 | 'Integrate Tag Manager', 'Launch Purpose Style', 'Onboarding Process', 'Presentation for Design Partner', 'Landing Page Redesign', 'Convert Figma to HTML' 49 | ]; 50 | 51 | var projects = [ 52 | 'Webpixels', 'Purpose', 'Clever', 'Social Media', 'SEO', 'Design', 'Features', 'Laboratory', 'Purpose', 'Clever' 53 | ]; 54 | 55 | 56 | module.exports = { 57 | name: names, 58 | email: emails, 59 | occupation: occupations, 60 | avatar: avatars, 61 | phone: phones, 62 | company: companies, 63 | logo: logos, 64 | industry: industries, 65 | city: cities, 66 | task: tasks, 67 | project: projects, 68 | getSlug 69 | } 70 | -------------------------------------------------------------------------------- /src/data/nav.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "name": "", 3 | "content": [{ 4 | "label": "Dashboard", 5 | "icon": "bar-chart-fill", 6 | "path": "/index.html" 7 | }, 8 | { 9 | "label": "Profile", 10 | "icon": "person-circle", 11 | "path": "/profile.html" 12 | }, 13 | { 14 | "label": "Settings", 15 | "icon": "gear-fill", 16 | "path": "/settings.html" 17 | }, 18 | { 19 | "label": "Login", 20 | "icon": "lock-fill", 21 | "path": "/login.html" 22 | } 23 | ] 24 | }, 25 | { 26 | "name": "Resources", 27 | "content": [ 28 | { 29 | "label": "Hot it works", 30 | "icon": "hand-index", 31 | "url": "https://bit.ly/3uCYY2X" 32 | }, 33 | { 34 | "label": "Docs", 35 | "icon": "journals", 36 | "url": "https://webpixels.io/docs" 37 | }, 38 | { 39 | "label": "Premium Version", 40 | "icon": "mouse3", 41 | "url": "https://clever-dashboard.webpixels.work/" 42 | } 43 | ] 44 | } 45 | ] 46 | -------------------------------------------------------------------------------- /src/data/profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tahlia Mooney", 3 | "shortname": "Tahlia", 4 | "bio": "", 5 | "email": "tahlia@clever.com", 6 | "phone": "", 7 | "img": "/img/people/img-profile.jpg", 8 | "cover": "/img/covers/img-profile.jpg", 9 | "role": "UI Designer", 10 | "location": "San Francisco, California" 11 | } 12 | -------------------------------------------------------------------------------- /src/data/site.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Clever Admin Dashboard Template", 3 | "description": "Clever is a modern Bootstrap dashboard theme designed and coded by Webpixels to support developers and designers create beautiful and consistent applications.", 4 | "url": "https://webpixels.io/themes/clever-admin-dashboard-template", 5 | "lang": "en", 6 | "version": "1.0.0", 7 | "github": { 8 | "url": "" 9 | }, 10 | "author": { 11 | "name": "Webpixels", 12 | "twitter": "@webpxs", 13 | "github": "webpixels", 14 | "dribbble": "webpixels", 15 | "email": "support@webpixels.io" 16 | }, 17 | "changelog": { 18 | "url": "https://webpixels.io/themes/clever-admin-dashboard-template/releases", 19 | "updated_at": "2022-02-02" 20 | }, 21 | "support": "https://github.com/webpixels/support/discussions/categories/bootstrap-themes", 22 | "createdAt": "2022-02-02", 23 | "copyright": "2022" 24 | } 25 | -------------------------------------------------------------------------------- /src/data/user_activities.js: -------------------------------------------------------------------------------- 1 | var helper = require('./helper'); 2 | 3 | module.exports = [ 4 | { 5 | name: helper.name[0], 6 | img: { 7 | src: '/img/people/img-1.jpg' 8 | }, 9 | text: 'Some text related to the activity', 10 | date: '1 hr ago' 11 | }, 12 | { 13 | name: helper.name[0], 14 | img: { 15 | src: '/img/people/img-2.jpg' 16 | }, 17 | text: 'Some text related to the activity', 18 | date: '1 hr ago' 19 | }, 20 | { 21 | name: helper.name[0], 22 | img: { 23 | src: '/img/people/img-3.jpg' 24 | }, 25 | text: 'Some text related to the activity', 26 | date: '1 hr ago' 27 | }, 28 | { 29 | name: helper.name[0], 30 | img: { 31 | src: '/img/people/img-4.jpg' 32 | }, 33 | text: 'Some text related to the activity', 34 | date: '1 hr ago' 35 | }, 36 | { 37 | name: helper.name[0], 38 | img: { 39 | src: '/img/people/img-5.jpg' 40 | }, 41 | text: 'Some text related to the activity', 42 | date: '1 hr ago' 43 | }, 44 | { 45 | name: helper.name[0], 46 | img: { 47 | src: '/img/people/img-6.jpg' 48 | }, 49 | text: 'Some text related to the activity', 50 | date: '1 hr ago' 51 | }, 52 | { 53 | name: helper.name[0], 54 | img: { 55 | src: '/img/people/img-7.jpg' 56 | }, 57 | text: 'Some text related to the activity', 58 | date: '1 hr ago' 59 | }, 60 | { 61 | name: helper.name[0], 62 | img: { 63 | src: '/img/people/img-8.jpg' 64 | }, 65 | text: 'Some text related to the activity', 66 | date: '1 hr ago' 67 | }, 68 | { 69 | name: helper.name[0], 70 | img: { 71 | src: '/img/people/img-9.jpg' 72 | }, 73 | text: 'Some text related to the activity', 74 | date: '1 hr ago' 75 | }, 76 | { 77 | name: helper.name[0], 78 | img: { 79 | src: '/img/people/img-10.jpg' 80 | }, 81 | text: 'Some text related to the activity', 82 | date: '1 hr ago' 83 | } 84 | ] 85 | -------------------------------------------------------------------------------- /src/img/covers/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/covers/img-1.jpg -------------------------------------------------------------------------------- /src/img/covers/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/covers/img-2.jpg -------------------------------------------------------------------------------- /src/img/covers/img-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/covers/img-profile.jpg -------------------------------------------------------------------------------- /src/img/logos/clever-dark-sm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/img/logos/clever-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/img/logos/clever-light-sm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/img/logos/clever-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/img/logos/clever-primary-sm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/img/logos/clever-primary.svg: -------------------------------------------------------------------------------- 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 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /src/img/media/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-1.jpg -------------------------------------------------------------------------------- /src/img/media/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-2.jpg -------------------------------------------------------------------------------- /src/img/media/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-3.jpg -------------------------------------------------------------------------------- /src/img/media/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-4.jpg -------------------------------------------------------------------------------- /src/img/media/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-5.jpg -------------------------------------------------------------------------------- /src/img/media/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-6.jpg -------------------------------------------------------------------------------- /src/img/media/img-800x800-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-800x800-1.jpg -------------------------------------------------------------------------------- /src/img/media/img-800x800-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-800x800-2.jpg -------------------------------------------------------------------------------- /src/img/media/img-800x800-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-800x800-3.jpg -------------------------------------------------------------------------------- /src/img/media/img-800x800-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-800x800-4.jpg -------------------------------------------------------------------------------- /src/img/media/img-800x800-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-800x800-5.jpg -------------------------------------------------------------------------------- /src/img/media/img-800x800-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-800x800-6.jpg -------------------------------------------------------------------------------- /src/img/media/img-800x800-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-800x800-7.jpg -------------------------------------------------------------------------------- /src/img/media/img-800x800-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/media/img-800x800-8.jpg -------------------------------------------------------------------------------- /src/img/people/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-1.jpg -------------------------------------------------------------------------------- /src/img/people/img-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-10.jpg -------------------------------------------------------------------------------- /src/img/people/img-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-11.jpg -------------------------------------------------------------------------------- /src/img/people/img-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-12.jpg -------------------------------------------------------------------------------- /src/img/people/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-2.jpg -------------------------------------------------------------------------------- /src/img/people/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-3.jpg -------------------------------------------------------------------------------- /src/img/people/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-4.jpg -------------------------------------------------------------------------------- /src/img/people/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-5.jpg -------------------------------------------------------------------------------- /src/img/people/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-6.jpg -------------------------------------------------------------------------------- /src/img/people/img-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-7.jpg -------------------------------------------------------------------------------- /src/img/people/img-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-8.jpg -------------------------------------------------------------------------------- /src/img/people/img-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-9.jpg -------------------------------------------------------------------------------- /src/img/people/img-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpixels/bootstrap-dashboard-kit/bd6aa2dad2d0008bfdaa91bead651fa72586dd7d/src/img/people/img-profile.jpg -------------------------------------------------------------------------------- /src/img/social/airbnb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/img/social/bootstrap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/img/social/dribbble.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/img/social/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/img/social/flickr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/img/social/google.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/img/social/hangout.svg: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /src/img/social/instagram.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/img/social/itunes.svg: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /src/img/social/linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/img/social/medium.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/img/social/pinterest.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/img/social/skype.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/img/social/slack.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/img/social/spotify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/img/social/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/img/social/viber.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/img/social/vimeo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/img/social/weechat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/img/social/whatsapp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/img/social/workplace.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/img/social/youtube.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/includes/layouts/auth.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% include 'meta.njk' %} 4 | {% include 'styles.njk' %} 5 | 6 | 7 |
8 | {{ content | safe }} 9 |
10 | 11 | {# Scripts #} 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/includes/layouts/base.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% include 'meta.njk' %} 5 | {% include 'styles.njk' %} 6 | 7 | 8 | 9 |
10 | 11 | {% include "partials/sidebar.njk" %} 12 | 13 | 14 |
15 | 16 | 17 | {% include "partials/header.njk" %} 18 | 19 | 20 |
21 | {{ content | safe }} 22 |
23 |
24 |
25 | 26 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /src/includes/meta.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | Free Bootstrap Dashboard Kit - Webpixels 4 | -------------------------------------------------------------------------------- /src/includes/partials/header-base.njk: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 7 |

8 | {% if emoji %}{{ emoji }}{% endif %}{{ title }} 9 |

10 |
11 | 12 | 22 |
23 | {% if not header.nav == false %} 24 | 25 | 36 | {% endif %} 37 |
38 |
39 |
40 | -------------------------------------------------------------------------------- /src/includes/partials/header-profile.njk: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |
7 |
8 | 9 | ... 10 | 11 |
12 |
13 | 14 | 15 |
16 | {{ profile.role }} 17 |
18 | 19 | 20 |

21 | {{ profile.name }} 22 |

23 | 24 |
25 | UI/UX 26 | Mobile Apps 27 | UI Research 28 |
29 |
30 | 41 |
42 | 43 | 65 |
66 |
67 | -------------------------------------------------------------------------------- /src/includes/partials/header.njk: -------------------------------------------------------------------------------- 1 | {% if header == "base" %} 2 | {% include "partials/header-base.njk" %} 3 | {% elif header == "profile" %} 4 | {% include "partials/header-profile.njk" %} 5 | {% elif header == false %} 6 | 7 | {% else %} 8 | {% include "partials/header-base.njk" %} 9 | {% endif %} 10 | -------------------------------------------------------------------------------- /src/includes/partials/navbar-nav-docs.njk: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /src/includes/partials/navbar-nav-list.njk: -------------------------------------------------------------------------------- 1 | 17 | {% if not loop.last %} 18 | 19 | 20 | {% endif %} 21 | -------------------------------------------------------------------------------- /src/includes/partials/sidebar.njk: -------------------------------------------------------------------------------- 1 | 50 | -------------------------------------------------------------------------------- /src/includes/styles.njk: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- 1 | // Bootstrap JS 2 | var bootstrap = require('bootstrap'); 3 | 4 | document.addEventListener('DOMContentLoaded', () => { 5 | 6 | }); 7 | -------------------------------------------------------------------------------- /src/js/theme-styles.js: -------------------------------------------------------------------------------- 1 | // 2 | // Get computed styles 3 | // 4 | 5 | 'use strict'; 6 | 7 | function themeStyles() { 8 | 9 | // API 10 | this.style = function(property) { 11 | var style = getComputedStyle(document.body); 12 | var propertyValye = style.getPropertyValue(property); 13 | 14 | if(propertyValye) { 15 | return propertyValye.trim(); 16 | } 17 | else { 18 | return 'undefined'; 19 | } 20 | } 21 | this.colors = function() { 22 | var colors = { 23 | gray: { 24 | 50: this.style('--x-gray-50'), 25 | 100: this.style('--x-gray-100'), 26 | 200: this.style('--x-gray-200'), 27 | 300: this.style('--x-gray-300'), 28 | 400: this.style('--x-gray-400'), 29 | 500: this.style('--x-gray-500'), 30 | 600: this.style('--x-gray-600'), 31 | 700: this.style('--x-gray-700'), 32 | 800: this.style('--x-gray-800'), 33 | 900: this.style('--x-gray-900') 34 | }, 35 | theme: { 36 | 'primary': this.style('--x-primary'), 37 | 'secondary': this.style('--x-secondary'), 38 | 'tertiary': this.style('--x-tertiary'), 39 | 'info': this.style('--x-info'), 40 | 'success': this.style('--x-success'), 41 | 'danger': this.style('--x-danger'), 42 | 'warning': this.style('--x-warning'), 43 | 'dark': this.style('--x-dark') 44 | }, 45 | transparent: 'transparent', 46 | } 47 | return colors; 48 | } 49 | 50 | this.fonts = function() { 51 | var fonts = { 52 | base: this.style('--x-font-sans-serif'), 53 | code: this.style('--x-font-monospace'), 54 | serif: this.style('--x-font-serif') 55 | } 56 | return fonts; 57 | } 58 | } 59 | 60 | module.exports = themeStyles; 61 | -------------------------------------------------------------------------------- /src/pages/login.njk: -------------------------------------------------------------------------------- 1 | --- 2 | layout: auth 3 | title: Login 4 | permalink: '/login.html' 5 | --- 6 | 7 |
8 |
9 |
10 |
11 |
12 |
13 | 14 | ... 15 | 16 |

17 | Welcome back! 18 |

19 |

Let's build someting great

20 |
21 |
22 |
23 | 24 | 25 |
26 |
27 | 28 | 29 |
30 |
31 |
32 | 33 | 36 |
37 |
38 | 43 |
44 |
45 | or 46 |
47 | 65 |
66 | Don't have an account? 67 | Sign up 68 |
69 |
70 |
71 |
72 |
73 |
74 | -------------------------------------------------------------------------------- /src/pages/settings.njk: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | title: Account Settings 4 | permalink: 'settings.html' 5 | --- 6 | 7 |
8 | 9 |
10 |
11 |
12 |
13 |
14 | 15 | ... 16 | 17 |
18 | {{ profile.name | url }} 19 | View Profile 20 |
21 |
22 |
23 |
24 | 25 |
26 |
27 |
28 |
29 |
30 |
31 |

Contact Information

32 |
33 |
34 |
35 |
36 |
37 | 38 | 39 |
40 |
41 |
42 |
43 | 44 | 45 |
46 |
47 |
48 |
49 | 50 | 51 |
52 |
53 |
54 |
55 | 56 | 57 |
58 |
59 |
60 |
61 | 62 | 63 |
64 |
65 |
66 |
67 | 68 | 69 |
70 |
71 |
72 |
73 | 74 | 80 |
81 |
82 |
83 |
84 | 85 | 86 |
87 |
88 |
89 |
90 | 91 | 94 |
95 |
96 |
97 | 98 | 99 |
100 |
101 |
102 |
103 |
104 | -------------------------------------------------------------------------------- /src/scss/main.scss: -------------------------------------------------------------------------------- 1 | // Functions 2 | @import "@webpixels/css/core/functions"; 3 | 4 | // Variables 5 | @import 'themes/default'; 6 | 7 | // Components 8 | @import "@webpixels/css/base"; 9 | @import "@webpixels/css/forms"; 10 | @import "@webpixels/css/components"; 11 | 12 | // Custom styles 13 | @import "user/custom"; 14 | -------------------------------------------------------------------------------- /src/scss/themes/_default.scss: -------------------------------------------------------------------------------- 1 | // Custom variables 2 | // 3 | // Variables should follow the `$component-state-property-size` formula for 4 | // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs. 5 | 6 | // Need additional variables? Simply create it here and make sure you follow the naming formula explained at the top of this file. 7 | -------------------------------------------------------------------------------- /src/scss/user/_custom.scss: -------------------------------------------------------------------------------- 1 | // Custom styles 2 | // 3 | // This is the place where you should place all additional styles and imports. 4 | // This will allow you to take advantage of future updates with lower time consumed on the upgrade process. 5 | 6 | // Scrollbar 7 | 8 | /* Firefox */ 9 | .scrollbar { 10 | scrollbar-color: $gray-300 transparent; 11 | scrollbar-width: thin; 12 | } 13 | 14 | /* WebKit and Chromiums */ 15 | .scrollbar::-webkit-scrollbar-track 16 | { 17 | -webkit-box-shadow: none; 18 | border-radius: 10px; 19 | background-color: transparent; 20 | } 21 | 22 | .scrollbar::-webkit-scrollbar 23 | { 24 | width: 6px; 25 | background-color: transparent; 26 | } 27 | 28 | .scrollbar::-webkit-scrollbar-thumb 29 | { 30 | border-radius: 10px; 31 | -webkit-box-shadow: none; 32 | background-color: $gray-300; 33 | } 34 | 35 | .scrollbar:hover::-webkit-scrollbar-thumb 36 | { 37 | background-color: shade-color($gray-300, 5%); 38 | } 39 | -------------------------------------------------------------------------------- /src/scss/utilities.scss: -------------------------------------------------------------------------------- 1 | // Webpixels CSS Utilities 2 | // our utilities are built using the Bootstrap API 3 | // learn more: https://webpixels.io/docs/css 4 | 5 | @import "@webpixels/css/utilities"; 6 | -------------------------------------------------------------------------------- /src/svg/icons/google.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/svg/social/airbnb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/social/bootstrap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/svg/social/dribbble.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/social/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/svg/social/flickr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/svg/social/google.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/svg/social/hangout.svg: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /src/svg/social/instagram.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/svg/social/itunes.svg: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /src/svg/social/linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/svg/social/medium.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/svg/social/skype.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/svg/social/slack.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/svg/social/spotify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/svg/social/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/svg/social/viber.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/svg/social/vimeo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/svg/social/weechat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/svg/social/whatsapp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/svg/social/workplace.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/svg/social/youtube.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/svg/technologies/bootstrap.svg: -------------------------------------------------------------------------------- 1 | Bootstrap 2 | -------------------------------------------------------------------------------- /src/svg/technologies/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/svg/technologies/figma.svg: -------------------------------------------------------------------------------- 1 | Figma.logoCreated using Figma 2 | -------------------------------------------------------------------------------- /src/svg/technologies/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/svg/technologies/jquery.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/svg/technologies/js.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/svg/technologies/laravel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/svg/technologies/photoshop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/svg/technologies/reactjs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/svg/technologies/sketch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/svg/technologies/svg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/svg/technologies/vue.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/svg/technologies/wordpress.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/svg/technologies/xd.svg: -------------------------------------------------------------------------------- 1 | 4 | --------------------------------------------------------------------------------