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

Base Apparel redesign with custom cursor

Valeriia 200

@Magic1vy

Desktop design screenshot for the Base Apparel coming soon page coding challenge

This is a solution for...

  • HTML
  • CSS
  • JS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


Hi, Frontend community 👋

In this project, I've created a responsive and visually appealing solution to a challenge by incorporating animations and additional features.

Through this project, I've improved my skills in writing semantic HTML5 and implementing HTML forms and input fields with proper error handling.

Additionally, I also implemented a custom cursor. To enhance the visual experience, I utilized the GreenSock Animation Platform (GSAP) library to create smooth and engaging animations for different elements on the webpage.

Overall, this project allowed me to not only showcase my frontend development skills but also expand my knowledge of modern web design techniques and best practices. I'm excited to continue honing my skills and creating even more impactful and innovative solutions in the future.

Please feel free to share your thoughts and suggestions with me, as they will help me grow as a frontend developer. Thank you for taking the time to review my project!

Community feedback

@0xabdulkhaliq

Posted

Hello there 👋. Congratulations on successfully completing the challenge! 🎉

  • I have other recommendations regarding your code that I believe will be of great interest to you.

JAVASCRIPT 🟡:

  • The way you declared variables are need to be well structured and organized
  • Take a look at the following example code which describes a better way of declaring variables to have a well structured code
const firstName = "Your";
const lastName = "Name";
const emailAddress = "[email protected]";
const password = "supersecret";
  • instead try this,
const firstName =  "Your",
       lastName =  "Name",
       emailAddress = "[email protected]"
       •••                
       •••         // n number of declarations
       password = "supersecret";   // make sure to add a semicolon at end of last declaration
  • This single line declaration with separated commas will helps you to have a better structured code and improves readability though

.

I hope you find this helpful 😄 Above all, the solution you submitted is great !

Happy coding!

0

Valeriia 200

@Magic1vy

Posted

@0xAbdulKhalid I defiantly will try your suggestion. Thank you for your valuable feedback! 😊

0

@0xabdulkhaliq

Posted

@Magic1vy Glad you found it helpful ! 🤠

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