├── .github └── workflows │ ├── node.js.yml │ └── static.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── galeria.html ├── images ├── contacts │ ├── gitHub.svg │ ├── linkedin.svg │ └── outlook.svg ├── landing │ ├── coding.svg │ └── lomo.jpg ├── projects │ ├── json.svg │ ├── mailbox.svg │ ├── todolist.svg │ └── viajes.svg ├── social-media │ ├── facebook.jpg │ ├── github.png │ ├── instagram.jpg │ ├── tiktok.png │ ├── twitter.webp │ ├── whatsapp.png │ └── youtube.png └── techs │ ├── css.svg │ ├── docker.svg │ ├── figma.svg │ ├── git.svg │ ├── html.svg │ ├── javascript.svg │ ├── mongodb.svg │ ├── mysql.svg │ ├── nestjs.svg │ ├── node-js.svg │ ├── pgsql.svg │ ├── reactjs.svg │ ├── tailwind.svg │ ├── typescript.svg │ └── vue.svg ├── index-old.html ├── index.html ├── nextflix-clone ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.jsx │ ├── assets │ │ ├── netflix-logo.png │ │ ├── netflix-symbol.png │ │ └── react.svg │ ├── components │ │ ├── DetailListDescription │ │ │ └── index.jsx │ │ ├── Layout │ │ │ └── index.jsx │ │ └── index.js │ ├── index.css │ ├── main.jsx │ ├── pages │ │ ├── Detail │ │ │ └── index.jsx │ │ ├── Home │ │ │ └── index.jsx │ │ └── index.js │ ├── router │ │ └── index.jsx │ ├── services │ │ └── index.js │ ├── slices │ │ └── netflixSlice.js │ └── store │ │ └── index.js ├── tailwind.config.js └── vite.config.js ├── react-project-1 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── Counter │ │ │ └── index.jsx │ │ ├── Footer │ │ │ └── index.jsx │ │ ├── Header │ │ │ └── index.jsx │ │ └── index.js │ ├── index.css │ └── main.jsx ├── tailwind.config.js └── vite.config.js ├── react-tip-calculator ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.jsx │ ├── assets │ │ ├── icon-dollar.svg │ │ ├── icon-person.svg │ │ └── logo.svg │ ├── components │ │ ├── Card │ │ │ └── index.jsx │ │ ├── Header │ │ │ └── index.jsx │ │ ├── ItemPercentage │ │ │ └── index.jsx │ │ ├── Summary │ │ │ └── index.jsx │ │ ├── TextField │ │ │ └── index.jsx │ │ ├── Title │ │ │ └── index.jsx │ │ └── index.js │ ├── index.css │ └── main.jsx ├── tailwind.config.js └── vite.config.js ├── semana2 ├── dia2 │ ├── index.html │ └── styles.css └── formularios.html ├── semana3 ├── flex.css ├── flex.html ├── reto-1 │ ├── css │ │ └── styles.css │ ├── docs │ │ └── style-guide.md │ ├── images │ │ └── image-qr-code.png │ └── index.html └── reto-2 │ ├── assets │ ├── fonts │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Medium.ttf │ │ └── Ubuntu-Regular.ttf │ └── images │ │ ├── bg-sidebar-desktop.svg │ │ ├── bg-sidebar-mobile.svg │ │ ├── favicon-32x32.png │ │ ├── icon-advanced.svg │ │ ├── icon-arcade.svg │ │ ├── icon-checkmark.svg │ │ ├── icon-pro.svg │ │ └── icon-thank-you.svg │ ├── css │ ├── fonts.css │ └── styles.css │ ├── docs │ └── style-guide.md │ └── index.html ├── semana4 ├── grid.css ├── grid.html ├── index.html └── reto3 │ ├── assets │ ├── desktop │ │ ├── image-curiosity.jpg │ │ ├── image-deep-earth.jpg │ │ ├── image-fisheye.jpg │ │ ├── image-from-above.jpg │ │ ├── image-grid.jpg │ │ ├── image-hero.jpg │ │ ├── image-interactive.jpg │ │ ├── image-night-arcade.jpg │ │ ├── image-pocket-borealis.jpg │ │ └── image-soccer-team.jpg │ ├── favicon-32x32.png │ ├── icons │ │ ├── icon-close.svg │ │ ├── icon-facebook.svg │ │ ├── icon-hamburger.svg │ │ ├── icon-instagram.svg │ │ ├── icon-pinterest.svg │ │ └── icon-twitter.svg │ ├── logo.svg │ └── mobile │ │ ├── image-curiosity.jpg │ │ ├── image-deep-earth.jpg │ │ ├── image-fisheye.jpg │ │ ├── image-from-above.jpg │ │ ├── image-grid.jpg │ │ ├── image-hero.jpg │ │ ├── image-interactive.jpg │ │ ├── image-night-arcade.jpg │ │ ├── image-pocket-borealis.jpg │ │ └── image-soccer-team.jpg │ ├── css │ └── styles.css │ └── index.html ├── semana5 ├── columns.html ├── index.html ├── reto4 │ ├── assets │ │ ├── fonts │ │ │ ├── Inter-VariableFont_slnt,wght.ttf │ │ │ ├── README.txt │ │ │ └── static │ │ │ │ ├── Inter-Bold.ttf │ │ │ │ ├── Inter-ExtraBold.ttf │ │ │ │ └── Inter-Regular.ttf │ │ └── images │ │ │ ├── favicon-32x32.png │ │ │ ├── icon-menu-close.svg │ │ │ ├── icon-menu.svg │ │ │ ├── image-gaming-growth.jpg │ │ │ ├── image-retro-pcs.jpg │ │ │ ├── image-top-laptops.jpg │ │ │ ├── image-web-3-desktop.jpg │ │ │ ├── image-web-3-mobile.jpg │ │ │ └── logo.svg │ ├── css │ │ └── style.css │ └── index.html ├── reto5 │ ├── assets │ │ ├── crew │ │ │ ├── background-crew-desktop.jpg │ │ │ ├── background-crew-mobile.jpg │ │ │ ├── background-crew-tablet.jpg │ │ │ ├── image-anousheh-ansari.png │ │ │ ├── image-anousheh-ansari.webp │ │ │ ├── image-douglas-hurley.png │ │ │ ├── image-douglas-hurley.webp │ │ │ ├── image-mark-shuttleworth.png │ │ │ ├── image-mark-shuttleworth.webp │ │ │ ├── image-victor-glover.png │ │ │ └── image-victor-glover.webp │ │ ├── destination │ │ │ ├── background-destination-desktop.jpg │ │ │ ├── background-destination-mobile.jpg │ │ │ ├── background-destination-tablet.jpg │ │ │ ├── image-europa.png │ │ │ ├── image-europa.webp │ │ │ ├── image-mars.png │ │ │ ├── image-mars.webp │ │ │ ├── image-moon.png │ │ │ ├── image-moon.webp │ │ │ ├── image-titan.png │ │ │ └── image-titan.webp │ │ ├── favicon-32x32.png │ │ ├── home │ │ │ ├── background-home-desktop.jpg │ │ │ ├── background-home-mobile.jpg │ │ │ └── background-home-tablet.jpg │ │ ├── shared │ │ │ ├── icon-close.svg │ │ │ ├── icon-hamburger.svg │ │ │ └── logo.svg │ │ └── technology │ │ │ ├── background-technology-desktop.jpg │ │ │ ├── background-technology-mobile.jpg │ │ │ ├── background-technology-tablet.jpg │ │ │ ├── image-launch-vehicle-landscape.jpg │ │ │ ├── image-launch-vehicle-portrait.jpg │ │ │ ├── image-space-capsule-landscape.jpg │ │ │ ├── image-space-capsule-portrait.jpg │ │ │ ├── image-spaceport-landscape.jpg │ │ │ └── image-spaceport-portrait.jpg │ ├── index.html │ └── js │ │ └── index.js └── tailwind │ └── index.html ├── semana6 ├── arreglos.js ├── funciones.js ├── index.html ├── index.js └── problemas │ ├── problema1.js │ ├── problema2.js │ ├── problema3.js │ └── problema4.js ├── semana7 ├── index.html ├── js │ ├── document.js │ └── forms.js └── reto6 │ ├── assets │ ├── icon-dollar.svg │ ├── icon-person.svg │ └── logo.svg │ ├── index.css │ ├── index.html │ └── index.js ├── semana8 ├── assets │ └── icons │ │ └── check.svg ├── index.html └── js │ └── app.js ├── todolist ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── background.jpg │ └── vite.svg ├── src │ ├── App.jsx │ ├── __test__ │ │ ├── App.test.jsx │ │ ├── setup.js │ │ └── sum.test.js │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── Button │ │ │ └── index.jsx │ │ ├── Card │ │ │ └── index.jsx │ │ ├── Delete │ │ │ └── index.jsx │ │ ├── Edit │ │ │ └── index.jsx │ │ ├── Form │ │ │ └── index.jsx │ │ ├── FormTask │ │ │ └── index.jsx │ │ ├── Select │ │ │ └── index.jsx │ │ ├── Task │ │ │ └── index.jsx │ │ ├── TextField │ │ │ └── index.jsx │ │ └── index.js │ ├── hooks │ │ └── useForm.js │ ├── index.css │ ├── layouts │ │ ├── AuthLayout │ │ │ └── index.jsx │ │ ├── MainLayout │ │ │ └── index.jsx │ │ ├── index.js │ │ └── index.jsx │ ├── main.jsx │ ├── mock │ │ ├── mockTask.js │ │ └── mockUser.js │ ├── pages │ │ ├── Home │ │ │ └── index.jsx │ │ ├── SignIn │ │ │ ├── form.js │ │ │ └── index.jsx │ │ ├── SignUp │ │ │ ├── form.js │ │ │ └── index.jsx │ │ └── index.js │ ├── router │ │ └── index.jsx │ ├── selectors │ │ └── userSelector.js │ ├── services │ │ ├── config.js │ │ └── index.js │ ├── slices │ │ └── userSlice.js │ ├── store │ │ └── index.js │ └── utils │ │ └── index.js ├── tailwind.config.js └── vite.config.js └── vanilla-project ├── .gitignore ├── counter.js ├── index.html ├── javascript.svg ├── main.js ├── movie.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── style.css └── tailwind.config.js /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | web.config 3 | 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/README.md -------------------------------------------------------------------------------- /galeria.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/galeria.html -------------------------------------------------------------------------------- /images/contacts/gitHub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/contacts/gitHub.svg -------------------------------------------------------------------------------- /images/contacts/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/contacts/linkedin.svg -------------------------------------------------------------------------------- /images/contacts/outlook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/contacts/outlook.svg -------------------------------------------------------------------------------- /images/landing/coding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/landing/coding.svg -------------------------------------------------------------------------------- /images/landing/lomo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/landing/lomo.jpg -------------------------------------------------------------------------------- /images/projects/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/projects/json.svg -------------------------------------------------------------------------------- /images/projects/mailbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/projects/mailbox.svg -------------------------------------------------------------------------------- /images/projects/todolist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/projects/todolist.svg -------------------------------------------------------------------------------- /images/projects/viajes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/projects/viajes.svg -------------------------------------------------------------------------------- /images/social-media/facebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/social-media/facebook.jpg -------------------------------------------------------------------------------- /images/social-media/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/social-media/github.png -------------------------------------------------------------------------------- /images/social-media/instagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/social-media/instagram.jpg -------------------------------------------------------------------------------- /images/social-media/tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/social-media/tiktok.png -------------------------------------------------------------------------------- /images/social-media/twitter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/social-media/twitter.webp -------------------------------------------------------------------------------- /images/social-media/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/social-media/whatsapp.png -------------------------------------------------------------------------------- /images/social-media/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/social-media/youtube.png -------------------------------------------------------------------------------- /images/techs/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/css.svg -------------------------------------------------------------------------------- /images/techs/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/docker.svg -------------------------------------------------------------------------------- /images/techs/figma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/figma.svg -------------------------------------------------------------------------------- /images/techs/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/git.svg -------------------------------------------------------------------------------- /images/techs/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/html.svg -------------------------------------------------------------------------------- /images/techs/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/javascript.svg -------------------------------------------------------------------------------- /images/techs/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/mongodb.svg -------------------------------------------------------------------------------- /images/techs/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/mysql.svg -------------------------------------------------------------------------------- /images/techs/nestjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/nestjs.svg -------------------------------------------------------------------------------- /images/techs/node-js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/node-js.svg -------------------------------------------------------------------------------- /images/techs/pgsql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/pgsql.svg -------------------------------------------------------------------------------- /images/techs/reactjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/reactjs.svg -------------------------------------------------------------------------------- /images/techs/tailwind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/tailwind.svg -------------------------------------------------------------------------------- /images/techs/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/typescript.svg -------------------------------------------------------------------------------- /images/techs/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/images/techs/vue.svg -------------------------------------------------------------------------------- /index-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/index-old.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/index.html -------------------------------------------------------------------------------- /nextflix-clone/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/.eslintrc.cjs -------------------------------------------------------------------------------- /nextflix-clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/.gitignore -------------------------------------------------------------------------------- /nextflix-clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/README.md -------------------------------------------------------------------------------- /nextflix-clone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/index.html -------------------------------------------------------------------------------- /nextflix-clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/package-lock.json -------------------------------------------------------------------------------- /nextflix-clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/package.json -------------------------------------------------------------------------------- /nextflix-clone/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/postcss.config.js -------------------------------------------------------------------------------- /nextflix-clone/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/public/vite.svg -------------------------------------------------------------------------------- /nextflix-clone/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/App.jsx -------------------------------------------------------------------------------- /nextflix-clone/src/assets/netflix-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/assets/netflix-logo.png -------------------------------------------------------------------------------- /nextflix-clone/src/assets/netflix-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/assets/netflix-symbol.png -------------------------------------------------------------------------------- /nextflix-clone/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/assets/react.svg -------------------------------------------------------------------------------- /nextflix-clone/src/components/DetailListDescription/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/components/DetailListDescription/index.jsx -------------------------------------------------------------------------------- /nextflix-clone/src/components/Layout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/components/Layout/index.jsx -------------------------------------------------------------------------------- /nextflix-clone/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/components/index.js -------------------------------------------------------------------------------- /nextflix-clone/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/index.css -------------------------------------------------------------------------------- /nextflix-clone/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/main.jsx -------------------------------------------------------------------------------- /nextflix-clone/src/pages/Detail/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/pages/Detail/index.jsx -------------------------------------------------------------------------------- /nextflix-clone/src/pages/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/pages/Home/index.jsx -------------------------------------------------------------------------------- /nextflix-clone/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/pages/index.js -------------------------------------------------------------------------------- /nextflix-clone/src/router/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/router/index.jsx -------------------------------------------------------------------------------- /nextflix-clone/src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/services/index.js -------------------------------------------------------------------------------- /nextflix-clone/src/slices/netflixSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/slices/netflixSlice.js -------------------------------------------------------------------------------- /nextflix-clone/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/src/store/index.js -------------------------------------------------------------------------------- /nextflix-clone/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/tailwind.config.js -------------------------------------------------------------------------------- /nextflix-clone/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/nextflix-clone/vite.config.js -------------------------------------------------------------------------------- /react-project-1/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/.eslintrc.cjs -------------------------------------------------------------------------------- /react-project-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/.gitignore -------------------------------------------------------------------------------- /react-project-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/README.md -------------------------------------------------------------------------------- /react-project-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/index.html -------------------------------------------------------------------------------- /react-project-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/package-lock.json -------------------------------------------------------------------------------- /react-project-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/package.json -------------------------------------------------------------------------------- /react-project-1/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/postcss.config.js -------------------------------------------------------------------------------- /react-project-1/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/public/vite.svg -------------------------------------------------------------------------------- /react-project-1/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/src/App.jsx -------------------------------------------------------------------------------- /react-project-1/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/src/assets/react.svg -------------------------------------------------------------------------------- /react-project-1/src/components/Counter/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/src/components/Counter/index.jsx -------------------------------------------------------------------------------- /react-project-1/src/components/Footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/src/components/Footer/index.jsx -------------------------------------------------------------------------------- /react-project-1/src/components/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/src/components/Header/index.jsx -------------------------------------------------------------------------------- /react-project-1/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/src/components/index.js -------------------------------------------------------------------------------- /react-project-1/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/src/index.css -------------------------------------------------------------------------------- /react-project-1/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/src/main.jsx -------------------------------------------------------------------------------- /react-project-1/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/tailwind.config.js -------------------------------------------------------------------------------- /react-project-1/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-project-1/vite.config.js -------------------------------------------------------------------------------- /react-tip-calculator/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/.eslintrc.cjs -------------------------------------------------------------------------------- /react-tip-calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/.gitignore -------------------------------------------------------------------------------- /react-tip-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/README.md -------------------------------------------------------------------------------- /react-tip-calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/index.html -------------------------------------------------------------------------------- /react-tip-calculator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/package-lock.json -------------------------------------------------------------------------------- /react-tip-calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/package.json -------------------------------------------------------------------------------- /react-tip-calculator/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/postcss.config.js -------------------------------------------------------------------------------- /react-tip-calculator/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/public/vite.svg -------------------------------------------------------------------------------- /react-tip-calculator/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/App.jsx -------------------------------------------------------------------------------- /react-tip-calculator/src/assets/icon-dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/assets/icon-dollar.svg -------------------------------------------------------------------------------- /react-tip-calculator/src/assets/icon-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/assets/icon-person.svg -------------------------------------------------------------------------------- /react-tip-calculator/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/assets/logo.svg -------------------------------------------------------------------------------- /react-tip-calculator/src/components/Card/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/components/Card/index.jsx -------------------------------------------------------------------------------- /react-tip-calculator/src/components/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/components/Header/index.jsx -------------------------------------------------------------------------------- /react-tip-calculator/src/components/ItemPercentage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/components/ItemPercentage/index.jsx -------------------------------------------------------------------------------- /react-tip-calculator/src/components/Summary/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/components/Summary/index.jsx -------------------------------------------------------------------------------- /react-tip-calculator/src/components/TextField/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/components/TextField/index.jsx -------------------------------------------------------------------------------- /react-tip-calculator/src/components/Title/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/components/Title/index.jsx -------------------------------------------------------------------------------- /react-tip-calculator/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/components/index.js -------------------------------------------------------------------------------- /react-tip-calculator/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/index.css -------------------------------------------------------------------------------- /react-tip-calculator/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/src/main.jsx -------------------------------------------------------------------------------- /react-tip-calculator/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/tailwind.config.js -------------------------------------------------------------------------------- /react-tip-calculator/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/react-tip-calculator/vite.config.js -------------------------------------------------------------------------------- /semana2/dia2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana2/dia2/index.html -------------------------------------------------------------------------------- /semana2/dia2/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana2/dia2/styles.css -------------------------------------------------------------------------------- /semana2/formularios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana2/formularios.html -------------------------------------------------------------------------------- /semana3/flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/flex.css -------------------------------------------------------------------------------- /semana3/flex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/flex.html -------------------------------------------------------------------------------- /semana3/reto-1/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-1/css/styles.css -------------------------------------------------------------------------------- /semana3/reto-1/docs/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-1/docs/style-guide.md -------------------------------------------------------------------------------- /semana3/reto-1/images/image-qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-1/images/image-qr-code.png -------------------------------------------------------------------------------- /semana3/reto-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-1/index.html -------------------------------------------------------------------------------- /semana3/reto-2/assets/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /semana3/reto-2/assets/fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /semana3/reto-2/assets/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /semana3/reto-2/assets/images/bg-sidebar-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/images/bg-sidebar-desktop.svg -------------------------------------------------------------------------------- /semana3/reto-2/assets/images/bg-sidebar-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/images/bg-sidebar-mobile.svg -------------------------------------------------------------------------------- /semana3/reto-2/assets/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/images/favicon-32x32.png -------------------------------------------------------------------------------- /semana3/reto-2/assets/images/icon-advanced.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/images/icon-advanced.svg -------------------------------------------------------------------------------- /semana3/reto-2/assets/images/icon-arcade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/images/icon-arcade.svg -------------------------------------------------------------------------------- /semana3/reto-2/assets/images/icon-checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/images/icon-checkmark.svg -------------------------------------------------------------------------------- /semana3/reto-2/assets/images/icon-pro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/images/icon-pro.svg -------------------------------------------------------------------------------- /semana3/reto-2/assets/images/icon-thank-you.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/assets/images/icon-thank-you.svg -------------------------------------------------------------------------------- /semana3/reto-2/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/css/fonts.css -------------------------------------------------------------------------------- /semana3/reto-2/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/css/styles.css -------------------------------------------------------------------------------- /semana3/reto-2/docs/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/docs/style-guide.md -------------------------------------------------------------------------------- /semana3/reto-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana3/reto-2/index.html -------------------------------------------------------------------------------- /semana4/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/grid.css -------------------------------------------------------------------------------- /semana4/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/grid.html -------------------------------------------------------------------------------- /semana4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/index.html -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-curiosity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-curiosity.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-deep-earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-deep-earth.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-fisheye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-fisheye.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-from-above.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-from-above.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-grid.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-hero.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-interactive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-interactive.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-night-arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-night-arcade.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-pocket-borealis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-pocket-borealis.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/desktop/image-soccer-team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/desktop/image-soccer-team.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/favicon-32x32.png -------------------------------------------------------------------------------- /semana4/reto3/assets/icons/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/icons/icon-close.svg -------------------------------------------------------------------------------- /semana4/reto3/assets/icons/icon-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/icons/icon-facebook.svg -------------------------------------------------------------------------------- /semana4/reto3/assets/icons/icon-hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/icons/icon-hamburger.svg -------------------------------------------------------------------------------- /semana4/reto3/assets/icons/icon-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/icons/icon-instagram.svg -------------------------------------------------------------------------------- /semana4/reto3/assets/icons/icon-pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/icons/icon-pinterest.svg -------------------------------------------------------------------------------- /semana4/reto3/assets/icons/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/icons/icon-twitter.svg -------------------------------------------------------------------------------- /semana4/reto3/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/logo.svg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-curiosity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-curiosity.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-deep-earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-deep-earth.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-fisheye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-fisheye.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-from-above.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-from-above.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-grid.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-hero.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-interactive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-interactive.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-night-arcade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-night-arcade.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-pocket-borealis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-pocket-borealis.jpg -------------------------------------------------------------------------------- /semana4/reto3/assets/mobile/image-soccer-team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/assets/mobile/image-soccer-team.jpg -------------------------------------------------------------------------------- /semana4/reto3/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/css/styles.css -------------------------------------------------------------------------------- /semana4/reto3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana4/reto3/index.html -------------------------------------------------------------------------------- /semana5/columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/columns.html -------------------------------------------------------------------------------- /semana5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/index.html -------------------------------------------------------------------------------- /semana5/reto4/assets/fonts/Inter-VariableFont_slnt,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/fonts/Inter-VariableFont_slnt,wght.ttf -------------------------------------------------------------------------------- /semana5/reto4/assets/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/fonts/README.txt -------------------------------------------------------------------------------- /semana5/reto4/assets/fonts/static/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/fonts/static/Inter-Bold.ttf -------------------------------------------------------------------------------- /semana5/reto4/assets/fonts/static/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/fonts/static/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /semana5/reto4/assets/fonts/static/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/fonts/static/Inter-Regular.ttf -------------------------------------------------------------------------------- /semana5/reto4/assets/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/images/favicon-32x32.png -------------------------------------------------------------------------------- /semana5/reto4/assets/images/icon-menu-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/images/icon-menu-close.svg -------------------------------------------------------------------------------- /semana5/reto4/assets/images/icon-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/images/icon-menu.svg -------------------------------------------------------------------------------- /semana5/reto4/assets/images/image-gaming-growth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/images/image-gaming-growth.jpg -------------------------------------------------------------------------------- /semana5/reto4/assets/images/image-retro-pcs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/images/image-retro-pcs.jpg -------------------------------------------------------------------------------- /semana5/reto4/assets/images/image-top-laptops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/images/image-top-laptops.jpg -------------------------------------------------------------------------------- /semana5/reto4/assets/images/image-web-3-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/images/image-web-3-desktop.jpg -------------------------------------------------------------------------------- /semana5/reto4/assets/images/image-web-3-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/images/image-web-3-mobile.jpg -------------------------------------------------------------------------------- /semana5/reto4/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/assets/images/logo.svg -------------------------------------------------------------------------------- /semana5/reto4/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/css/style.css -------------------------------------------------------------------------------- /semana5/reto4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto4/index.html -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/background-crew-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/background-crew-desktop.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/background-crew-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/background-crew-mobile.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/background-crew-tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/background-crew-tablet.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/image-anousheh-ansari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/image-anousheh-ansari.png -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/image-anousheh-ansari.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/image-anousheh-ansari.webp -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/image-douglas-hurley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/image-douglas-hurley.png -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/image-douglas-hurley.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/image-douglas-hurley.webp -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/image-mark-shuttleworth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/image-mark-shuttleworth.png -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/image-mark-shuttleworth.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/image-mark-shuttleworth.webp -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/image-victor-glover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/image-victor-glover.png -------------------------------------------------------------------------------- /semana5/reto5/assets/crew/image-victor-glover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/crew/image-victor-glover.webp -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/background-destination-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/background-destination-desktop.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/background-destination-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/background-destination-mobile.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/background-destination-tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/background-destination-tablet.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/image-europa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/image-europa.png -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/image-europa.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/image-europa.webp -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/image-mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/image-mars.png -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/image-mars.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/image-mars.webp -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/image-moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/image-moon.png -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/image-moon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/image-moon.webp -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/image-titan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/image-titan.png -------------------------------------------------------------------------------- /semana5/reto5/assets/destination/image-titan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/destination/image-titan.webp -------------------------------------------------------------------------------- /semana5/reto5/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/favicon-32x32.png -------------------------------------------------------------------------------- /semana5/reto5/assets/home/background-home-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/home/background-home-desktop.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/home/background-home-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/home/background-home-mobile.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/home/background-home-tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/home/background-home-tablet.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/shared/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/shared/icon-close.svg -------------------------------------------------------------------------------- /semana5/reto5/assets/shared/icon-hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/shared/icon-hamburger.svg -------------------------------------------------------------------------------- /semana5/reto5/assets/shared/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/shared/logo.svg -------------------------------------------------------------------------------- /semana5/reto5/assets/technology/background-technology-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/technology/background-technology-desktop.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/technology/background-technology-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/technology/background-technology-mobile.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/technology/background-technology-tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/technology/background-technology-tablet.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/technology/image-launch-vehicle-landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/technology/image-launch-vehicle-landscape.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/technology/image-launch-vehicle-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/technology/image-launch-vehicle-portrait.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/technology/image-space-capsule-landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/technology/image-space-capsule-landscape.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/technology/image-space-capsule-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/technology/image-space-capsule-portrait.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/technology/image-spaceport-landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/technology/image-spaceport-landscape.jpg -------------------------------------------------------------------------------- /semana5/reto5/assets/technology/image-spaceport-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/assets/technology/image-spaceport-portrait.jpg -------------------------------------------------------------------------------- /semana5/reto5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/index.html -------------------------------------------------------------------------------- /semana5/reto5/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/reto5/js/index.js -------------------------------------------------------------------------------- /semana5/tailwind/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana5/tailwind/index.html -------------------------------------------------------------------------------- /semana6/arreglos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana6/arreglos.js -------------------------------------------------------------------------------- /semana6/funciones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana6/funciones.js -------------------------------------------------------------------------------- /semana6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana6/index.html -------------------------------------------------------------------------------- /semana6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana6/index.js -------------------------------------------------------------------------------- /semana6/problemas/problema1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana6/problemas/problema1.js -------------------------------------------------------------------------------- /semana6/problemas/problema2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana6/problemas/problema2.js -------------------------------------------------------------------------------- /semana6/problemas/problema3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana6/problemas/problema3.js -------------------------------------------------------------------------------- /semana6/problemas/problema4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana6/problemas/problema4.js -------------------------------------------------------------------------------- /semana7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana7/index.html -------------------------------------------------------------------------------- /semana7/js/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana7/js/document.js -------------------------------------------------------------------------------- /semana7/js/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana7/js/forms.js -------------------------------------------------------------------------------- /semana7/reto6/assets/icon-dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana7/reto6/assets/icon-dollar.svg -------------------------------------------------------------------------------- /semana7/reto6/assets/icon-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana7/reto6/assets/icon-person.svg -------------------------------------------------------------------------------- /semana7/reto6/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana7/reto6/assets/logo.svg -------------------------------------------------------------------------------- /semana7/reto6/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana7/reto6/index.css -------------------------------------------------------------------------------- /semana7/reto6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana7/reto6/index.html -------------------------------------------------------------------------------- /semana7/reto6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana7/reto6/index.js -------------------------------------------------------------------------------- /semana8/assets/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana8/assets/icons/check.svg -------------------------------------------------------------------------------- /semana8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana8/index.html -------------------------------------------------------------------------------- /semana8/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/semana8/js/app.js -------------------------------------------------------------------------------- /todolist/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/.eslintrc.cjs -------------------------------------------------------------------------------- /todolist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/.gitignore -------------------------------------------------------------------------------- /todolist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/README.md -------------------------------------------------------------------------------- /todolist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/index.html -------------------------------------------------------------------------------- /todolist/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/package-lock.json -------------------------------------------------------------------------------- /todolist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/package.json -------------------------------------------------------------------------------- /todolist/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/postcss.config.js -------------------------------------------------------------------------------- /todolist/public/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/public/background.jpg -------------------------------------------------------------------------------- /todolist/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/public/vite.svg -------------------------------------------------------------------------------- /todolist/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/App.jsx -------------------------------------------------------------------------------- /todolist/src/__test__/App.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/__test__/App.test.jsx -------------------------------------------------------------------------------- /todolist/src/__test__/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/__test__/setup.js -------------------------------------------------------------------------------- /todolist/src/__test__/sum.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/__test__/sum.test.js -------------------------------------------------------------------------------- /todolist/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/assets/react.svg -------------------------------------------------------------------------------- /todolist/src/components/Button/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/Button/index.jsx -------------------------------------------------------------------------------- /todolist/src/components/Card/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/Card/index.jsx -------------------------------------------------------------------------------- /todolist/src/components/Delete/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/Delete/index.jsx -------------------------------------------------------------------------------- /todolist/src/components/Edit/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/Edit/index.jsx -------------------------------------------------------------------------------- /todolist/src/components/Form/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/Form/index.jsx -------------------------------------------------------------------------------- /todolist/src/components/FormTask/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/FormTask/index.jsx -------------------------------------------------------------------------------- /todolist/src/components/Select/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/Select/index.jsx -------------------------------------------------------------------------------- /todolist/src/components/Task/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/Task/index.jsx -------------------------------------------------------------------------------- /todolist/src/components/TextField/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/TextField/index.jsx -------------------------------------------------------------------------------- /todolist/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/components/index.js -------------------------------------------------------------------------------- /todolist/src/hooks/useForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/hooks/useForm.js -------------------------------------------------------------------------------- /todolist/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/index.css -------------------------------------------------------------------------------- /todolist/src/layouts/AuthLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/layouts/AuthLayout/index.jsx -------------------------------------------------------------------------------- /todolist/src/layouts/MainLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/layouts/MainLayout/index.jsx -------------------------------------------------------------------------------- /todolist/src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/layouts/index.js -------------------------------------------------------------------------------- /todolist/src/layouts/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/layouts/index.jsx -------------------------------------------------------------------------------- /todolist/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/main.jsx -------------------------------------------------------------------------------- /todolist/src/mock/mockTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/mock/mockTask.js -------------------------------------------------------------------------------- /todolist/src/mock/mockUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/mock/mockUser.js -------------------------------------------------------------------------------- /todolist/src/pages/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/pages/Home/index.jsx -------------------------------------------------------------------------------- /todolist/src/pages/SignIn/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/pages/SignIn/form.js -------------------------------------------------------------------------------- /todolist/src/pages/SignIn/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/pages/SignIn/index.jsx -------------------------------------------------------------------------------- /todolist/src/pages/SignUp/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/pages/SignUp/form.js -------------------------------------------------------------------------------- /todolist/src/pages/SignUp/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/pages/SignUp/index.jsx -------------------------------------------------------------------------------- /todolist/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/pages/index.js -------------------------------------------------------------------------------- /todolist/src/router/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/router/index.jsx -------------------------------------------------------------------------------- /todolist/src/selectors/userSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/selectors/userSelector.js -------------------------------------------------------------------------------- /todolist/src/services/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/services/config.js -------------------------------------------------------------------------------- /todolist/src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/services/index.js -------------------------------------------------------------------------------- /todolist/src/slices/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/slices/userSlice.js -------------------------------------------------------------------------------- /todolist/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/store/index.js -------------------------------------------------------------------------------- /todolist/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/src/utils/index.js -------------------------------------------------------------------------------- /todolist/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/tailwind.config.js -------------------------------------------------------------------------------- /todolist/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/todolist/vite.config.js -------------------------------------------------------------------------------- /vanilla-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/.gitignore -------------------------------------------------------------------------------- /vanilla-project/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/counter.js -------------------------------------------------------------------------------- /vanilla-project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/index.html -------------------------------------------------------------------------------- /vanilla-project/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/javascript.svg -------------------------------------------------------------------------------- /vanilla-project/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/main.js -------------------------------------------------------------------------------- /vanilla-project/movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/movie.js -------------------------------------------------------------------------------- /vanilla-project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/package-lock.json -------------------------------------------------------------------------------- /vanilla-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/package.json -------------------------------------------------------------------------------- /vanilla-project/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/postcss.config.js -------------------------------------------------------------------------------- /vanilla-project/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/public/vite.svg -------------------------------------------------------------------------------- /vanilla-project/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/style.css -------------------------------------------------------------------------------- /vanilla-project/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linder3hs/codigo-15/HEAD/vanilla-project/tailwind.config.js --------------------------------------------------------------------------------