My Design Process
46 |
49 | Design involves problem identification, research, 50 | brainstorming, prototyping, testing, and refining. Effective 51 | communication and feedback are crucial. 52 |
53 | Read Post 54 |├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public ├── check.mp3 ├── favicon.png ├── headshot.jpg ├── image-1.jpg ├── image-2.jpg ├── image-3.jpg ├── toggle.mp3 └── wave.png └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |👋
22 |I write about web dev
24 |design
25 |tech
26 |Welcome to my blog.
37 |49 | Design involves problem identification, research, 50 | brainstorming, prototyping, testing, and refining. Effective 51 | communication and feedback are crucial. 52 |
53 | Read Post 54 |61 | My overview of preferred tech gear, from laptops to 62 | noise-cancelling headphones. I’ll include top picks and 63 | reasons behind my choices. 64 |
65 | Read Post 66 |73 | When learning to code, start with the basics and practice 74 | regularly with real-life projects. Don't be afraid to make 75 | mistakes or ask for help. Stay curious and keep learning. 76 |
77 | Read Post 78 |87 | Stay in the loop with my blog by subscribing to my email 88 | newsletter. Never miss a post and get exclusive content and 89 | updates. Join now! Cancel at anytime. 90 |
91 |