Latest solutions
Pod Landing Page using React & Styled-Components
#react#styled-components#sass/scssSubmitted over 3 years ago
Latest comments
- @JoeKarow@ohmymario
Looking good so far! Try adding hover states to your
image
,h1
and Jules Wyvern text. It also looks like your h1 has the wrong color. Tryhsl(0, 0%, 100%)
to match what is in the style guide.If you need to see an example on how to add hover states here is my solution
Good luck! 😀
Marked as helpful - @MaianneThornton@ohmymario
Great job on this!
I would suggest maybe adding a background-color to your body element. Your background-image is partially transparent so it should show through. This should help with the bottom of your card getting lost in the background on desktop view. 😁
Marked as helpful - @folathecoder
Audiophile Store with React, Next.js, Typescript, & Styled Components
#next#react#styled-components#typescript#accessibility@ohmymariowow this looks incredible! I really enjoy the shrinking shadows when hovering over the headphones, speakers and earphones image links
Congrats on getting that job 🎉
- @skarlos134@ohmymario
Lookin good !
Right now you have <img src="/images/image-qr-code.png" alt="" class="section--img--qr">
try adding a period to your src <img src="./images/image-qr-code.png" alt="" class="section--img--qr">
also don't forget to add something to your alt tag
Marked as helpful