



Leila 27
21 |27 | Vuelve a intentarlo más tarde 28 | 29 |
├── .gitignore ├── 01-tinder-swipe ├── index.html ├── iphone.webp ├── photos │ ├── 1.webp │ └── 2.webp ├── tinder-icons.webp └── tinder-logo.webp ├── 02-arkanoid-game ├── bkg.png ├── bricks.png ├── index.html └── sprite.png ├── 03-midu-typing-game ├── data.js └── index.html ├── LICENSE.md ├── README.md └── web ├── README.md ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.svg ├── me-blue.webp ├── me.webp ├── og.jpg ├── projects │ ├── 01-tinder-swipe │ │ ├── index.html │ │ ├── iphone.webp │ │ ├── photos │ │ │ ├── 1.webp │ │ │ └── 2.webp │ │ ├── tinder-icons.webp │ │ └── tinder-logo.webp │ ├── 01.webp │ ├── 02-arkanoid-game │ │ ├── bkg.png │ │ ├── bricks.png │ │ ├── index.html │ │ └── sprite.png │ ├── 02.webp │ ├── 03-midu-typing-game │ │ ├── data.js │ │ └── index.html │ └── 03.webp └── readme.jpg ├── scripts └── copy-projects.js ├── src ├── components │ ├── Footer.astro │ ├── GitHubStar.astro │ ├── Header.astro │ ├── Hero.astro │ ├── InfoProject.astro │ └── Projects.astro ├── consts.js ├── env.d.ts ├── layouts │ └── Layout.astro └── pages │ ├── [project].astro │ └── index.astro ├── tailwind.config.mjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | web/dist -------------------------------------------------------------------------------- /01-tinder-swipe/index.html: -------------------------------------------------------------------------------- 1 |
7 | ¡Hola, soy midudev! Mi objetivo es mejorar la 8 | empleabilidad de la comunidad de Programación Hispana y 9 | el acceso a contenido de calidad sobre Desarrollo Web. 10 |
11 | 57 |37 | {project.description} 38 |
39 |