Latest solutions
nextjs, shadcn, framer-motion, typescript, tailwindcss,
#motion#next#shadcn#tailwind-css#typescriptSubmitted 6 months agoAll areas are covered but if areas come up in the future i will do well to list them
Latest comments
- @raheiberg@codesmiles
Great project 👍, tho I'd suggest the your card component should not take 100% of the screen width on the mobile view
You can simply adjust that by changing the width of the main tag on the media query with the use of percent unit Example
@media (max-width: 37.5rem) { main { width:80%; } }
Marked as helpful