Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
18
Comments
7

lavollmer

@lavollmerTwin Cities, Minnesota410 points

With a diverse background in healthcare and technology, I bring a unique perspective to the world of frontend development. As I continue to grow in this field, I am excited to connect with fellow enthusiasts, share insights, and collaborate on exciting projects.

I’m currently learning...

Hey, I'm Laura, diving into React.js & Tailwind CSS. Excited about building dynamic UIs with React's components & Tailwind's utility-first approach. Eager to connect & grow with the FM community!

Latest solutions

  • Responsive Time Tracking Table with TypeScript TailwindCSS

    #tailwind-css#typescript#accessibility

    lavollmer•410
    Submitted 5 months ago

    1 comment
  • Responsive Blogr Landing Page TailwindCSS TypeScript

    #tailwind-css#typescript

    lavollmer•410
    Submitted 5 months ago

    I had a few areas of the projects I need help on.

    1. The curved areas of the background section colors - I could not figure out how to create those.
    2. The sizing of images - how to size the images to go off the page or container while not moving the other sections of the flexbox.

    0 comments
  • Responsive React TailwindCSS Vite Product Cart List

    #accessibility#react#tailwind-css#vite#lighthouse

    lavollmer•410
    Submitted 9 months ago

    0 comments
  • ReactJS TailwindCSS Vite Contact Form

    #accessibility#react#tailwind-css#vite#lighthouse

    lavollmer•410
    Submitted 9 months ago

    I would like help with the query type error message displaying on the screen. Thank you!


    1 comment
  • ReactJS TailwindCSS Vite FAQ Accordian

    #accessibility#react#tailwind-css#vite#lighthouse

    lavollmer•410
    Submitted 9 months ago

    1 comment
  • ReactJS TailwindCSS Vite Web Accssibility Interactive Rating Component

    #accessibility#react#tailwind-css#vite#lighthouse

    lavollmer•410
    Submitted 9 months ago

    I feel that my project turned out well! Thank you!


    1 comment
View more solutions

Latest comments

  • Sergiy•1,270
    @MrSeager
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    Its working

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

    Gallery was challenging, I found out a "React Image Gallery" and work with that.

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

    "React Image Gallery" I couldn't fully customize it

    React, Bootstrap 5 and React Image Gallery

    #react#bootstrap
    1
    lavollmer•410
    @lavollmer
    Posted 9 months ago

    Hi!

    Great job on your project - it looks very similiar to the design! A couple small things that may improve your project - 1. The website tab still uses the "React App" and react symbol. I would encourage changing that in your index.html to the Ecommerce page and frontend mentor symbol provided in the assets folder. 2. README - I would work on improving your README to include your process, your project notes and ways you want to continue to develop your skills. There is a README template provided in the Frontend Mentor folder with the project. 3. The other thing I would work on is your lightbox to display the images which is something you can work on in the future!

    Otherwise, trying out your project live site - you were successfully able to add to the cart, your hover states were great and the design looked good! Keep up the good work!

  • Mesroua Djamel•430
    @MesrouaDjamel
    Submitted 9 months ago

    Responsive homepage news using grid

    #react#tailwind-css
    1
    lavollmer•410
    @lavollmer
    Posted 9 months ago

    Hi!

    Your project looks great and very similiar to the design. A suggestion would be to improve your README with more details related to the project, the challenges you faced, and resources you used to complete your project. Frontend Mentor provides a template README which you can work off to create something great! Otherwise, great job!

    Marked as helpful
  • Mesroua Djamel•430
    @MesrouaDjamel
    Submitted 9 months ago

    Contact form using react hook form and zod

    #react#tailwind-css#zod
    1
    lavollmer•410
    @lavollmer
    Posted 9 months ago

    Hi!

    Your project looks really good and I love the flexbox styling you did! Just a few quick things - the Contact Form should be Contact Us. Also, I believe your background color doesn't match the style guide given. Otherwise, everything else looks great!

  • mofada•340
    @mofada
    Submitted 10 months ago
    What are you most proud of, and what would you do differently next time?

    I learn html tag details and summary, and in tailwind css , add open class with details

    faq-accordion with tailwind css

    #tailwind-css
    1
    lavollmer•410
    @lavollmer
    Posted 9 months ago

    Hi!

    Your project looks identical to the design. Congrats! I liked that you added a footer with your author statement. Additionally, your tailwindcss spacing and styling looks very similiar to the design. You followed the font, colors and icons appropriately as well. It also looks like your open function works great too!

  • Mesroua Djamel•430
    @MesrouaDjamel
    Submitted 9 months ago

    Interactive rating component using react

    #react#tailwind-css
    1
    lavollmer•410
    @lavollmer
    Posted 9 months ago

    Hi!

    Great job on your project - it looks very similiar to the design! A few minor details I would touch on is the SUBMIT button to be colored orange and more rounded. Additionally, the color on the solution seems to be a little harder to view - I would update the the numbers color to be lighter. Otherwise, great job!

    Marked as helpful
  • Wangai•410
    @WangaiJM
    Submitted about 1 year ago
    What are you most proud of, and what would you do differently next time?

    The first react-vite project

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

    Unable to deploy to Netlify via Github. I deployed it manually in the end.

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

    I am curious, when creating @font-face, how does one use all the fonts from different folders provided by frontend mentor?

    Frontendmentor News Homepage

    #react#vite
    1
    lavollmer•410
    @lavollmer
    Posted about 1 year ago

    Hi Wangai!

    Good job on your first project!

    Getting the fonts from frontend Mentor to work was a little challenging. I first used https://transfonter.org/ to change the files into the appropriate type - WOFF and WOFF2 files. You then import those files in your assets folder - you can label them whatever you like.

    Once, that is complete, then you will have to import them into your tailwind css config file in your project like so within in the module.exports section -

    theme: { extend: { fontFamily: { 'inter-regular': ['Inter-Regular', 'sans-serif'], 'inter-bold': ['Inter Bold', 'sans-serif'], 'inter-extra-bold': ['Inter ExtraBold', 'sans-serif'], } }, },

    You will also need to import each file into your app.css file BEFORE your tailwind css utilities code within the file. This is an example of what it should look like for each font (you will need to have 3 of these - one for each font type):

    @font-face { font-family: 'Inter-Regular'; src: url('./assets/font/Inter-Regular.woff2') format('woff2'), url('./assets/font/Inter-Regular.woff') format('woff'); font-weight: 100; font-style: normal; }

    The url is the pathway to the font in your project. Change each url to match your path in your code. Hope this works! Thanks!

    Marked as helpful
View more comments
Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub