Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Static page using Astro

P

@jasper2virtual

Desktop design screenshot for the Social links profile coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

I hope i can do it better next time

What challenges did you encounter, and how did you overcome them?

how to render a list of buttons

What specific areas of your project would you like help with?

maybe everything, I am not good at it.

Community feedback

JdccDev 60

@jdcc1024

Posted

Great work!

Cool to see astro combined with tailwind at the early stages of these challenges :) For the rending of your list of buttons, you would eventually need more than an array of strings, as the link to each social media page each have their own distinct URLs.

In my project, I used something like this. Though I'm not sure if it's the best way to go about it

[
  { name: 'GitHub', url: 'https://www.github.com' },
  { name: 'Frontend Mentor', url: 'https://www.frontendmentor.io' },
  { name: 'LinkedIn', url: 'https://www.linkedin.com' },
  { name: 'Twitter', url: 'https://www.twitter.com' },
  { name: 'Instagram', url: 'https://www.instagram.com' },
].map((site) => return (<a href={site.url}>{site.name}</a>))
0

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord