├── .gitignore ├── LICENSE ├── README.md ├── jsconfig.json ├── package.json ├── public ├── _redirects ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon-114x114-precomposed.png ├── apple-touch-icon-114x114.png ├── apple-touch-icon-120x120-precomposed.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-144x144-precomposed.png ├── apple-touch-icon-144x144.png ├── apple-touch-icon-152x152-precomposed.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180-precomposed.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-57x57-precomposed.png ├── apple-touch-icon-57x57.png ├── apple-touch-icon-60x60-precomposed.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-72x72-precomposed.png ├── apple-touch-icon-72x72.png ├── apple-touch-icon-76x76-precomposed.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── browserconfig.xml ├── cover.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── logo-48.png ├── manifest.json ├── mstile-150x150.png ├── robots.txt ├── safari-pinned-tab.svg └── site.webmanifest └── src ├── App.js ├── assets ├── images │ ├── andzoa.webp │ ├── cover.png │ ├── cover2.png │ ├── cover3.png │ ├── mrLegend.webp │ ├── mrTodo.webp │ ├── mrWii.webp │ ├── portfolio.webp │ ├── profile.png │ ├── shape1.webp │ ├── shape2.webp │ └── shape3.webp └── svg │ ├── css.svg │ ├── facebook.svg │ ├── github.svg │ ├── html.svg │ ├── instagram.svg │ ├── jquery.svg │ ├── js.svg │ ├── linkedin.svg │ ├── logo.svg │ ├── mongodb.svg │ ├── mrlgd.svg │ ├── mrtodo.svg │ ├── mysql.svg │ ├── node.svg │ ├── php.svg │ ├── react.svg │ ├── twitter.svg │ ├── whatsapp.svg │ └── wp.svg ├── components ├── 404 │ └── NotFound │ │ └── index.jsx ├── about │ └── about.jsx ├── common │ ├── Layout │ │ ├── fonts.css │ │ ├── fonts │ │ │ ├── geo-v11-latin-regular.eot │ │ │ ├── geo-v11-latin-regular.svg │ │ │ ├── geo-v11-latin-regular.ttf │ │ │ ├── geo-v11-latin-regular.woff │ │ │ ├── geo-v11-latin-regular.woff2 │ │ │ ├── merriweather-v21-latin-regular.eot │ │ │ ├── merriweather-v21-latin-regular.svg │ │ │ ├── merriweather-v21-latin-regular.ttf │ │ │ ├── merriweather-v21-latin-regular.woff │ │ │ ├── merriweather-v21-latin-regular.woff2 │ │ │ ├── montserrat-v14-latin-regular.eot │ │ │ ├── montserrat-v14-latin-regular.svg │ │ │ ├── montserrat-v14-latin-regular.ttf │ │ │ ├── montserrat-v14-latin-regular.woff │ │ │ ├── montserrat-v14-latin-regular.woff2 │ │ │ ├── poppins-v9-latin-regular.eot │ │ │ ├── poppins-v9-latin-regular.svg │ │ │ ├── poppins-v9-latin-regular.ttf │ │ │ ├── poppins-v9-latin-regular.woff │ │ │ ├── poppins-v9-latin-regular.woff2 │ │ │ ├── roboto-v20-latin-300.eot │ │ │ ├── roboto-v20-latin-300.svg │ │ │ ├── roboto-v20-latin-300.ttf │ │ │ ├── roboto-v20-latin-300.woff │ │ │ ├── roboto-v20-latin-300.woff2 │ │ │ ├── roboto-v20-latin-500.eot │ │ │ ├── roboto-v20-latin-500.svg │ │ │ ├── roboto-v20-latin-500.ttf │ │ │ ├── roboto-v20-latin-500.woff │ │ │ ├── roboto-v20-latin-500.woff2 │ │ │ ├── roboto-v20-latin-700.eot │ │ │ ├── roboto-v20-latin-700.svg │ │ │ ├── roboto-v20-latin-700.ttf │ │ │ ├── roboto-v20-latin-700.woff │ │ │ ├── roboto-v20-latin-700.woff2 │ │ │ ├── roboto-v20-latin-regular.eot │ │ │ ├── roboto-v20-latin-regular.svg │ │ │ ├── roboto-v20-latin-regular.ttf │ │ │ ├── roboto-v20-latin-regular.woff │ │ │ └── roboto-v20-latin-regular.woff2 │ │ └── index.jsx │ ├── SEO │ │ └── index.jsx │ ├── footer │ │ └── footer.jsx │ ├── index.jsx │ └── navbar │ │ ├── Brand.js │ │ ├── BurgerMenu.js │ │ ├── CollapseMenu.js │ │ └── Navbar.js ├── contact │ ├── contact.jsx │ └── thanks.jsx └── home │ ├── Home.jsx │ ├── intro.jsx │ ├── projects.jsx │ └── skills.jsx ├── data └── config │ └── config.js ├── index.js ├── pages ├── 404.js ├── about.js ├── contact.js └── home.js └── styles ├── Global.js └── style.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## https://mr-wii.netlify.app/ 2 | 3 | My personal website 4 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/apple-touch-icon-120x120-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-120x120-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/apple-touch-icon-152x152-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-152x152-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/apple-touch-icon-180x180-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-180x180-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/apple-touch-icon-60x60-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-60x60-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/apple-touch-icon-76x76-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-76x76-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/cover.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/logo-48.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/images/andzoa.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/andzoa.webp -------------------------------------------------------------------------------- /src/assets/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/cover.png -------------------------------------------------------------------------------- /src/assets/images/cover2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/cover2.png -------------------------------------------------------------------------------- /src/assets/images/cover3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/cover3.png -------------------------------------------------------------------------------- /src/assets/images/mrLegend.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/mrLegend.webp -------------------------------------------------------------------------------- /src/assets/images/mrTodo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/mrTodo.webp -------------------------------------------------------------------------------- /src/assets/images/mrWii.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/mrWii.webp -------------------------------------------------------------------------------- /src/assets/images/portfolio.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/portfolio.webp -------------------------------------------------------------------------------- /src/assets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/profile.png -------------------------------------------------------------------------------- /src/assets/images/shape1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/shape1.webp -------------------------------------------------------------------------------- /src/assets/images/shape2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/shape2.webp -------------------------------------------------------------------------------- /src/assets/images/shape3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/images/shape3.webp -------------------------------------------------------------------------------- /src/assets/svg/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/css.svg -------------------------------------------------------------------------------- /src/assets/svg/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/facebook.svg -------------------------------------------------------------------------------- /src/assets/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/github.svg -------------------------------------------------------------------------------- /src/assets/svg/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/html.svg -------------------------------------------------------------------------------- /src/assets/svg/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/instagram.svg -------------------------------------------------------------------------------- /src/assets/svg/jquery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/jquery.svg -------------------------------------------------------------------------------- /src/assets/svg/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/js.svg -------------------------------------------------------------------------------- /src/assets/svg/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/linkedin.svg -------------------------------------------------------------------------------- /src/assets/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/logo.svg -------------------------------------------------------------------------------- /src/assets/svg/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/mongodb.svg -------------------------------------------------------------------------------- /src/assets/svg/mrlgd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/mrlgd.svg -------------------------------------------------------------------------------- /src/assets/svg/mrtodo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/mrtodo.svg -------------------------------------------------------------------------------- /src/assets/svg/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/mysql.svg -------------------------------------------------------------------------------- /src/assets/svg/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/node.svg -------------------------------------------------------------------------------- /src/assets/svg/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/php.svg -------------------------------------------------------------------------------- /src/assets/svg/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/react.svg -------------------------------------------------------------------------------- /src/assets/svg/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/twitter.svg -------------------------------------------------------------------------------- /src/assets/svg/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/whatsapp.svg -------------------------------------------------------------------------------- /src/assets/svg/wp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/assets/svg/wp.svg -------------------------------------------------------------------------------- /src/components/404/NotFound/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/404/NotFound/index.jsx -------------------------------------------------------------------------------- /src/components/about/about.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/about/about.jsx -------------------------------------------------------------------------------- /src/components/common/Layout/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts.css -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/geo-v11-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/geo-v11-latin-regular.eot -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/geo-v11-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/geo-v11-latin-regular.svg -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/geo-v11-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/geo-v11-latin-regular.ttf -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/geo-v11-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/geo-v11-latin-regular.woff -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/geo-v11-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/geo-v11-latin-regular.woff2 -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/merriweather-v21-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/merriweather-v21-latin-regular.eot -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/merriweather-v21-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/merriweather-v21-latin-regular.svg -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/merriweather-v21-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/merriweather-v21-latin-regular.ttf -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/merriweather-v21-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/merriweather-v21-latin-regular.woff -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/merriweather-v21-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/merriweather-v21-latin-regular.woff2 -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/montserrat-v14-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/montserrat-v14-latin-regular.eot -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/montserrat-v14-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/montserrat-v14-latin-regular.svg -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/montserrat-v14-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/montserrat-v14-latin-regular.ttf -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/montserrat-v14-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/montserrat-v14-latin-regular.woff -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/montserrat-v14-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/montserrat-v14-latin-regular.woff2 -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/poppins-v9-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/poppins-v9-latin-regular.eot -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/poppins-v9-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/poppins-v9-latin-regular.svg -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/poppins-v9-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/poppins-v9-latin-regular.ttf -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/poppins-v9-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/poppins-v9-latin-regular.woff -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/poppins-v9-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/poppins-v9-latin-regular.woff2 -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-300.eot -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-300.svg -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-300.ttf -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-300.woff -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-300.woff2 -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-500.eot -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-500.svg -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-500.ttf -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-500.woff -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-500.woff2 -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-700.eot -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-700.svg -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-700.ttf -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-700.woff -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-700.woff2 -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-regular.eot -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-regular.svg -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-regular.ttf -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-regular.woff -------------------------------------------------------------------------------- /src/components/common/Layout/fonts/roboto-v20-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/fonts/roboto-v20-latin-regular.woff2 -------------------------------------------------------------------------------- /src/components/common/Layout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/Layout/index.jsx -------------------------------------------------------------------------------- /src/components/common/SEO/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/SEO/index.jsx -------------------------------------------------------------------------------- /src/components/common/footer/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/footer/footer.jsx -------------------------------------------------------------------------------- /src/components/common/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/index.jsx -------------------------------------------------------------------------------- /src/components/common/navbar/Brand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/navbar/Brand.js -------------------------------------------------------------------------------- /src/components/common/navbar/BurgerMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/navbar/BurgerMenu.js -------------------------------------------------------------------------------- /src/components/common/navbar/CollapseMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/navbar/CollapseMenu.js -------------------------------------------------------------------------------- /src/components/common/navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/common/navbar/Navbar.js -------------------------------------------------------------------------------- /src/components/contact/contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/contact/contact.jsx -------------------------------------------------------------------------------- /src/components/contact/thanks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/contact/thanks.jsx -------------------------------------------------------------------------------- /src/components/home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/home/Home.jsx -------------------------------------------------------------------------------- /src/components/home/intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/home/intro.jsx -------------------------------------------------------------------------------- /src/components/home/projects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/home/projects.jsx -------------------------------------------------------------------------------- /src/components/home/skills.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/components/home/skills.jsx -------------------------------------------------------------------------------- /src/data/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/data/config/config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/pages/contact.js -------------------------------------------------------------------------------- /src/pages/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/pages/home.js -------------------------------------------------------------------------------- /src/styles/Global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/styles/Global.js -------------------------------------------------------------------------------- /src/styles/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pouiiro/Mr-wii/HEAD/src/styles/style.js --------------------------------------------------------------------------------