├── .gitignore ├── .vercelignore ├── 1.PNG ├── 2.PNG ├── 3.PNG ├── 4.PNG ├── README.md ├── app.html ├── components └── Tutorial.vue ├── layouts └── default.vue ├── nuxt.config.js ├── package.json ├── pages ├── contact.vue ├── index.vue ├── myself.vue └── projects.vue ├── static ├── api │ └── data.json ├── favicon.ico ├── images │ ├── myphoto.jpg │ ├── myphoto1.jpg │ └── photo.png └── resources │ └── assets │ ├── css │ └── style-starter.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── images │ ├── bg.jpg │ ├── g3.jpg │ └── g5.jpg │ └── js │ ├── bootstrap.min.js │ ├── customjs1.js │ ├── customjs2.js │ ├── customjs3.js │ ├── customjs4.js │ ├── customjs5.js │ ├── jquery-1.7.2.js │ ├── jquery-3.3.1.min.js │ ├── jquery.countup.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.prettyPhoto.js │ ├── jquery.quicksand.js │ ├── jquery.waypoints.min.js │ ├── owl.carousel.js │ ├── script.js │ └── theme-change.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- 1 | README.md 2 | .nuxt 3 | node_modules 4 | *.log 5 | -------------------------------------------------------------------------------- /1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/1.PNG -------------------------------------------------------------------------------- /2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/2.PNG -------------------------------------------------------------------------------- /3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/3.PNG -------------------------------------------------------------------------------- /4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/4.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/README.md -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/app.html -------------------------------------------------------------------------------- /components/Tutorial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/components/Tutorial.vue -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/package.json -------------------------------------------------------------------------------- /pages/contact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/pages/contact.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/myself.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/pages/myself.vue -------------------------------------------------------------------------------- /pages/projects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/pages/projects.vue -------------------------------------------------------------------------------- /static/api/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/api/data.json -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/myphoto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/images/myphoto.jpg -------------------------------------------------------------------------------- /static/images/myphoto1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/images/myphoto1.jpg -------------------------------------------------------------------------------- /static/images/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/images/photo.png -------------------------------------------------------------------------------- /static/resources/assets/css/style-starter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/css/style-starter.css -------------------------------------------------------------------------------- /static/resources/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/resources/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/resources/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/resources/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/resources/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/resources/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/resources/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/images/bg.jpg -------------------------------------------------------------------------------- /static/resources/assets/images/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/images/g3.jpg -------------------------------------------------------------------------------- /static/resources/assets/images/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/images/g5.jpg -------------------------------------------------------------------------------- /static/resources/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/resources/assets/js/customjs1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/customjs1.js -------------------------------------------------------------------------------- /static/resources/assets/js/customjs2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/customjs2.js -------------------------------------------------------------------------------- /static/resources/assets/js/customjs3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/customjs3.js -------------------------------------------------------------------------------- /static/resources/assets/js/customjs4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/customjs4.js -------------------------------------------------------------------------------- /static/resources/assets/js/customjs5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/customjs5.js -------------------------------------------------------------------------------- /static/resources/assets/js/jquery-1.7.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/jquery-1.7.2.js -------------------------------------------------------------------------------- /static/resources/assets/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /static/resources/assets/js/jquery.countup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/jquery.countup.js -------------------------------------------------------------------------------- /static/resources/assets/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /static/resources/assets/js/jquery.prettyPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/jquery.prettyPhoto.js -------------------------------------------------------------------------------- /static/resources/assets/js/jquery.quicksand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/jquery.quicksand.js -------------------------------------------------------------------------------- /static/resources/assets/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /static/resources/assets/js/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/owl.carousel.js -------------------------------------------------------------------------------- /static/resources/assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/script.js -------------------------------------------------------------------------------- /static/resources/assets/js/theme-change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/static/resources/assets/js/theme-change.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baizidmdashadzzaman/protfolio-for-developer-using-nuxt-js/HEAD/yarn.lock --------------------------------------------------------------------------------