Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
39
Comments
533
_nehal๐Ÿ’Ž
@NehalSahu8055

All comments

  • Maikl-kโ€ข10
    @Maikl-k
    Submitted over 1 year ago

    qr-code

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • To dynamically center the card. Don't use margins
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Don't use multiple <p> for the single descritption use only one.

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

  • Ana Inocรชncioโ€ข30
    @heyannli
    Submitted over 1 year ago

    Product Card Solution

    2
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹.

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • Use semantic element for strike-through <s>$169.99</s>

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

  • rachidnaitlahajโ€ข20
    @rachidnaitlahaj
    Submitted over 1 year ago

    product-preview-card-component-main

    #itcss
    3
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹.

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • Use semantic element for strike-through <s>$169.99</s>

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • Gean-Junioโ€ข20
    @Gean-Junio
    Submitted over 1 year ago

    Soluรงรฃo do desafio usando HTML e CSS.

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • beowulf1958โ€ข1,890
    @beowulf1958
    Submitted over 1 year ago
    What are you most proud of, and what would you do differently next time?

    learning to use Sass variables

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

    I had a bit of trouble with centering the card at first; check on solutions to other challenges by other people and was able to finally get it centered

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

    my h1 breaks the line differently than the design jpg

    QR Code version 2 semantic HTML

    #accessibility
    2
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • Use min-height:100vh instead of height:100vh To dynamically center the card

    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • JesnerWโ€ข210
    @JesnerW
    Submitted over 1 year ago

    flexbox + moder css :D

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹.

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • Use semantic element for strike-through <s>$169.99</s>

    • Use <button></button> for button as it a semantic element

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • Sarah Cooperโ€ข30
    @SarahCooper-TC
    Submitted over 1 year ago

    QR-Code CSS/HTML

    #accessibility#web-components
    2
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • Use min-height:100vh instead of height:100vh To dynamically center the card
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • syfe-hubโ€ข20
    @syfe-hub
    Submitted over 1 year ago

    Identify the problem. The first step is to know which problem you need

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • To dynamically center the card use min-height:100vh instead of height:100vh
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • Raiquen248โ€ข30
    @Raiquen248
    Submitted over 1 year ago

    My First Challenge from Frontend Mentor HTML and CSS

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • Don't use margins to center the card, To dynamically center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • Yeniโ€ข180
    @YeniUvwo
    Submitted over 1 year ago

    Responsive layout using CSS flexbox

    #accessibility#progressive-enhancement
    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • Don't use paddings or margins for centering the card as it will not dynamically center the card remove this and use either flex or grid for the same

    • To properly center the card

    • USING FLEXBOX on the parent element

    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    
    • You are wrapping main and footer inside a div its unnecessary to do this.

    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • Nakulโ€ข140
    @Official-Nakul
    Submitted over 1 year ago

    Responsive QR Card template with felx-box and grid

    #react#vite
    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Regarding your image issue

    • Since you are using your site with vite your images will not work unless you put your qr-image inside public folder
    • Tip : You can generate a new screenshot after making the necessary changes

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

  • Tusharโ€ข200
    @tushargola1
    Submitted over 1 year ago

    Qr code responsive

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • To dynamically center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

  • YoniDevโ€ข20
    @YoniiDev
    Submitted over 1 year ago

    Results summary component [HTML+CSS+SASS+FLEXBOX+BOX MODEL+MEDIAQUERY]

    #sass/scss
    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹.

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • Add min-height:100vh to your .seccion_results_summary_component to dynamically center the card.

    • Use responsive units(rem, em, %) from next project to increase responsiveness. Explore respective use cases on google.

    • Use max-width instead of width to make your design responsive.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • Marisa Phungbunphraโ€ข20
    @chalisamie
    Submitted over 1 year ago

    HTML and CSS for QR Code Payment

    #contentful#cube-css#webflow#wordpress#accessibility
    3
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

  • Joeyโ€ข10
    @joelbaah
    Submitted over 1 year ago

    QR Code Component

    1
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • Don't use position or margins for centering the card as it will not dynamically center the card remove this and use either flex or grid for the same
    .qrcard {
        /* position: relative; */
        /* top: 50%; */
        /* left: 50%; */
        /* transform: translate(-40%,40%); */
    }
    
    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • julianโ€ข340
    @lspacka
    Submitted over 1 year ago

    QR code component with HTML and CSS

    2
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹.

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • Remove margins and add min-height:100vh to your .qr-container to dynamically center the card.

    • Every site must have one h1 element describing the main content of the page.

    • So, Add a level-one heading

    • <h1>Improve you frontend skills by building projects</h1>

    • Use Semantics for the proper design of your code.

    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "QR code to frontend mentor website".

    • Use responsive units(rem, em, %) from next project. Explore respective use cases on google.

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
  • Kashyxp-patelโ€ข70
    @Kashyxp-patel
    Submitted over 1 year ago

    Product-card-component using html and css.

    2
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹.

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • It would be better if you use source media for switching to screen sizes(mobile or desktop) for image.
    <picture>
    <source media="(min-width:800px)" srcset="yourimage.jpg">
    <img src="yourimage.jpg" alt="description">
    </picture>
    
    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • Use semantic element for strike-through <s>$169.99</s>

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

  • LDX_DEVโ€ข190
    @ledoux25
    Submitted over 1 year ago

    Responsive product review card using flex and scss

    #accessibility#sass/scss
    2
    _nehal๐Ÿ’Žโ€ข6,710
    @NehalSahu8055
    Posted over 1 year ago

    Hello Coder ๐Ÿ‘‹.

    Congratulations on successfully completing the challenge! ๐ŸŽ‰

    Few suggestions regarding design.

    • To properly center the card
    • USING FLEXBOX
    body{  
        display: flex;
        justify-content: center;
       align-items: center;
       min-height: 100vh;
       ...
    }
    
    • Use Semantics for the proper design of your code.
    <body>
    <main>... main content goes here ...</main>
    <footer>... .attribution div goes here ... </footer>
    </body>
    
    • Use semantic element for strike-through <s>$169.99</s>

    • For non-decorative images give meaningful and descriptive alt like alt= "Gabrielle Chanel Perfume bottle surrounded by leaves.".

    • If you want to dive into accessibility for this project check this link

    I hope you find this helpful.

    Happy coding๐Ÿ˜„

    Marked as helpful
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

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