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

All comments

  • @ISAAC-EDZORDZI-FIAVOR

    Submitted

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

    I'm proud to be part of Frontend Mentor Community. This is my first time trying a challenge like this . Hoping to learn a lot from the family. The project was a little bit challenging but I try my best.

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

    I was finding it difficult to assign width and height to the container or box in which the content are

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

    Responsive design

    hilmi77 250

    @hilmi77

    Posted

    Hello @ISAAC EDZORDZI FIAVOR!

    Your Solution looks good🎉

    when I review your solution

    I have some advice for you

    -->If you are a Free member of FEM your starter file doesn't include Figma design therefore you can use Perfect pixel extension which usage so simple

    --->By using this extension, you can see the size of your designs more clearly while working.

    if you find useful this comment please click "Marked as helpful"

    Happy coding

    0
  • hilmi77 250

    @hilmi77

    Posted

    Hello @Olaniyan Kafayah!

    Your Solution looks good🎉

    When I review your solution

    center a container you can use flex, grid etc. for example you want to use flex to center a div you can give height:100vh display: flex; justify-content: center; align-items: center; to body element..

    if you find useful this comment please click "Marked as helpful"

    Happy coding

    Marked as helpful

    0
  • Fl0wwDev 10

    @Fl0wwDev

    Submitted

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

    This is the first time I've done a project like this, I really liked it.

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

    I had problems related to the flexbox, it's an area that I don't know very well

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

    I'm a beginner I take all feedback, thanks !

    hilmi77 250

    @hilmi77

    Posted

    Hello @Fl0wwDev!

    Your Solution looks good🎉

    When I review your solution

    center a container you can use flex, grid etc. for example you want to use flex to center a div you can give min-height:100vh display: flex; justify-content: center; align-items: center; to body element..

    and you if you want to learn flexbox deeply, you can visit these sites; https://css-tricks.com/snippets/css/a-guide-to-flexbox/ https://www.w3schools.com/css/css3_flexbox.asp

    if you find useful this comment please click "Marked as helpful"

    Happy coding

    0
  • bialasss 260

    @bialasssek

    Submitted

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

    ready to do the next project

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

    centering the card by display grid , minheight 100vh, placeitems center,

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

    .

    hilmi77 250

    @hilmi77

    Posted

    Hello @Marcelisq!

    Your Solution looks good🎉

    When I review your solution

    center a container you can use flex, grid etc. for example you want to use flex to center a div you can give min-height:100vh display: flex; justify-content: center; align-items: center; to body element..

    if you find useful this comment please click "Marked as helpful"

    Happy coding

    Marked as helpful

    0
  • @RidloGhifary

    Submitted

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

    someone please read this, i push all the challenges on the same repository, iam a bit confusing how to deploy all of them on github pages because some of them i created with react and some of them just HTML

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

    help me

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

    i`ll might help on how to using react and styling

    hilmi77 250

    @hilmi77

    Posted

    hello @Ridlo achmad ghifary!

    It sounds like you're working on a collection of projects, some built with React and others with just HTML, CSS, and possibly JavaScript, and you want to deploy them all to GitHub Pages. Let's break down the steps you can take to achieve this, considering the mix of technologies you're using.

    . Organize Your Repository First, you need to organize your repository to handle both React and plain HTML projects. A common approach is to have each project in its own folder at the root of the repository.

    Example structure:

    /my-github-repo

    /react-project-1
    
    /react-project-2
    
    /html-project-1
    
    /html-project-2
    

    . Deploy HTML Projects

    Deploying HTML projects to GitHub Pages is straightforward. If these projects don't rely on build steps, you can directly deploy them from a specific folder in your repository.

    GitHub Pages for Project Site: You can use the gh-pages branch of your repository to host your static files. However, GitHub Pages typically serves content from the root of a repository or the /docs folder on the main branch, which means you might need a separate branch for each project or to adjust your project structure.

    . Deploy React Projects

    For React projects, you will need to build them first because React apps require a build process that compiles JSX and ES6 code to browser-compatible JavaScript. Here's a basic approach to deploying a React app:

    Build Your React App: Navigate to your React project folder and run npm run build. This will create a build directory with your compiled project.

    Deploy the Build: You have a few options for deploying the build directory:

    Subdirectory on GitHub Pages: You can move the contents of the build directory to a subdirectory in your GitHub repository and push these changes. However, this approach requires configuring the homepage in your package.json and might involve complex path configurations for routing. Separate Repository/Branch: Each React project could have its own GitHub repository or branch for deployment purposes. This makes deployment simpler but fragments your projects across multiple repositories or branches.

    . Using GitHub Actions for Automation GitHub Actions can automate the deployment process for both your HTML and React projects. You can set up workflows to automatically build your React apps and push the builds to the appropriate branches or directories for GitHub Pages.

    . Configuring Paths and Routing Especially for React projects, ensure your application routing works well with the GitHub Pages deployment structure. You might need to use HashRouter instead of BrowserRouter for React Router to handle client-side routing correctly.

    . Tips for React and Styling React: Focus on component-based development. Break down your UI into reusable components. Styling: Consider using CSS modules or styled-components for scoped and maintainable styles. This approach helps prevent style conflicts across your projects.

    if you find useful this comment please click "Marked as helpful"

    Happy coding

    0
  • @des254

    Submitted

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

    Iam progressing well.

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

    The challenge has been a smooth one for me with only one challenge. Placing a div below another div. My attribution div could not come below the div with the other content.

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

    I would appreciate any help with centering a div.

    hilmi77 250

    @hilmi77

    Posted

    Hello @Desmond Maina!

    Your Solution looks good🎉

    When I review your solution

    center a container you can use flex, grid etc. for example you want to use flex to center a div you can give min-height:100vh display: flex; justify-content: center; align-items: center; to body element..

    if you find useful this comment please click "Marked as helpful"

    Happy coding

    Marked as helpful

    1
  • Barakat 10

    @barakahabdul

    Submitted

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

    Hey developers, i tried my first frontend mentor. please take a look at it and give me the feedback on what you think i should have done better. what you think i could do to improve, or even better, i am open to all correction. Thanks for your time.

    hilmi77 250

    @hilmi77

    Posted

    Hello @Barakat!

    Your Solution looks good🎉

    when I review your solution

    center a container you can use flex grid etc. for example you want to use flex to center a div you can give min-height:100vh display: flex; justify-content: center; align-items: center;

    I have some advice for you

    -->If you are a Free member of FEM your starter file doesn't include Figma design therefore you can use Perfect pixel extension which usage so simple

    --->By using this extension, you can see the size of your designs more clearly while working.

    if you find useful this comment please click "Marked as helpful"

    Happy coding

    Marked as helpful

    0
  • @itachidevs

    Submitted

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

    In this project, I've used flexbox layout. Next time I aimed to use grid system. I am proud of leaning and using flexbox layout.

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

    In the beginning Iam littile bit confused to align items in the container. But now I'm better in aligning items in the card.

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

    In the card, what is the best way to include image and description of card to the container.

    hilmi77 250

    @hilmi77

    Posted

    Hello @Baby Bhavani!

    Your Solution looks great!🎉

    I have some advice for you

    -->If you are a Free member of FEM your starter file doesn't include Figma design therefore you can use Perfect pixel extension which usage so simple

    --->By using this extension, you can see the size of your designs more clearly while working.

    if you find useful this comment please click "Marked as helpful"

    Happy coding

    1
  • @NosheenMumtaz

    Submitted

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

    I was easily able to configure html and css in this project.

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

    I could not configure how to upload my repository as live website.

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

    This was a basic html and css project so it was easy.

    hilmi77 250

    @hilmi77

    Posted

    Hello @NosheenMumtaz !

    Your Solution looks good🎉

    There are different ways to upload your project to the live site. You can use Github , netlify and Vercel.

    Mostly FEM users use Github

    this link will help you https://www.youtube.com/watch?v=Bzwlt3qf1dM

    and ı review your solution

    center a container you can use flex grid etc. for example you want to use flex to center a div you can give min-height:100vh display: flex; justify-content: center; align-items: center;

    if you find useful this comment please click "Marked as helpful"

    Happy coding

    Marked as helpful

    0
  • hilmi77 250

    @hilmi77

    Posted

    ---> Congratulations, you've done most of it. --->When I examine the code, the img path is not correct. -->Font family , font-size not correct

    --->These are the ones that catch my eye right now. keep working, Happy coding 😊

    Marked as helpful

    0