├── dist ├── images │ ├── image-anne.jpg │ ├── favicon-32x32.png │ ├── image-colton.jpg │ ├── image-irene.jpg │ ├── icon-star.svg │ ├── bg-pattern-top-mobile.svg │ ├── bg-pattern-top-desktop.svg │ ├── bg-pattern-bottom-mobile.svg │ └── bg-pattern-bottom-desktop.svg ├── index.html └── main.min.css ├── src ├── assets │ ├── images │ │ ├── image-anne.jpg │ │ ├── image-colton.jpg │ │ ├── image-irene.jpg │ │ ├── favicon-32x32.png │ │ ├── icon-star.svg │ │ ├── bg-pattern-top-mobile.svg │ │ ├── bg-pattern-bottom-mobile.svg │ │ ├── bg-pattern-top-desktop.svg │ │ └── bg-pattern-bottom-desktop.svg │ ├── design │ │ ├── desktop-design.jpg │ │ ├── mobile-design.jpg │ │ └── desktop-preview.jpg │ └── styles │ │ ├── variables.scss │ │ └── generals.scss └── index.html ├── .gitignore ├── style-guide.md ├── package.json ├── gulpfile.js └── README.md /dist/images/image-anne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/dist/images/image-anne.jpg -------------------------------------------------------------------------------- /dist/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/dist/images/favicon-32x32.png -------------------------------------------------------------------------------- /dist/images/image-colton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/dist/images/image-colton.jpg -------------------------------------------------------------------------------- /dist/images/image-irene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/dist/images/image-irene.jpg -------------------------------------------------------------------------------- /src/assets/images/image-anne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/src/assets/images/image-anne.jpg -------------------------------------------------------------------------------- /src/assets/images/image-colton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/src/assets/images/image-colton.jpg -------------------------------------------------------------------------------- /src/assets/images/image-irene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/src/assets/images/image-irene.jpg -------------------------------------------------------------------------------- /src/assets/design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/src/assets/design/desktop-design.jpg -------------------------------------------------------------------------------- /src/assets/design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/src/assets/design/mobile-design.jpg -------------------------------------------------------------------------------- /src/assets/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/src/assets/images/favicon-32x32.png -------------------------------------------------------------------------------- /src/assets/design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/social-proof-section/master/src/assets/design/desktop-preview.jpg -------------------------------------------------------------------------------- /src/assets/styles/variables.scss: -------------------------------------------------------------------------------- 1 | // COLORS 2 | 3 | $purple: #502050; 4 | $soft-purple: #937b92; 5 | $light-soft-purple: #f7f2f7; 6 | $soft-pink: #ee68a4; 7 | $white: #ffffff; 8 | 9 | // GENERALS 10 | 11 | $border-radius: 5px; 12 | -------------------------------------------------------------------------------- /dist/images/icon-star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/icon-star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/images/bg-pattern-top-mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/images/bg-pattern-top-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/bg-pattern-top-mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | # Avoid accidental Sketch file upload 4 | ############################################### 5 | ## Please do not remove line 5 - thanks! 🙂 ## 6 | ############################################### 7 | *.sketch 8 | 9 | # Avoid accidental XD or Figma upload if you convert the design file 10 | ####################################################### 11 | ## Please do not remove lines 11 and 12 - thanks! 🙂 ## 12 | ####################################################### 13 | *.xd 14 | *.fig 15 | 16 | # Avoid your project being littered with annoying .DS_Store files! 17 | .DS_Store 18 | -------------------------------------------------------------------------------- /dist/images/bg-pattern-bottom-mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/images/bg-pattern-bottom-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/bg-pattern-bottom-mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/bg-pattern-top-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/bg-pattern-bottom-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style-guide.md: -------------------------------------------------------------------------------- 1 | # Front-end Style Guide 2 | 3 | ## Layout 4 | 5 | The designs were created to the following widths: 6 | 7 | - Mobile: 375px 8 | - Desktop: 1440px 9 | 10 | ## Colors 11 | 12 | ### Primary 13 | 14 | Very Dark Magenta: hsl(300, 43%, 22%) 15 | Soft Pink: hsl(333, 80%, 67%) 16 | 17 | ### Neutral 18 | 19 | Dark Grayish Magenta: hsl(303, 10%, 53%) 20 | Light Grayish Magenta: hsl(300, 24%, 96%) 21 | White: hsl(0, 0%, 100%) 22 | 23 | ## Typography 24 | 25 | ### Body Copy 26 | 27 | - Font size: 15px 28 | 29 | ### Font 30 | 31 | - Family: [Spartan](https://fonts.google.com/specimen/Spartan) 32 | - Weights: 400, 500, 700 33 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "social-proof-section-master", 3 | "version": "1.0.0", 4 | "description": "![Design preview for the Social proof section coding challenge](./design/desktop-preview.jpg)", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "gulp build && gulp server" 9 | }, 10 | "author": "Victoria Marques", 11 | "license": "ISC", 12 | "devDependencies": { 13 | "browser-sync": "^2.26.13", 14 | "compression": "^1.7.4", 15 | "del": "^6.0.0", 16 | "gulp": "^4.0.2", 17 | "gulp-clean-css": "^4.3.0", 18 | "gulp-concat": "^2.6.1", 19 | "gulp-htmlmin": "^5.0.1", 20 | "gulp-sass": "^4.1.0" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | const { src, dest, series, parallel, watch } = require('gulp'); 2 | const sass = require('gulp-sass') 3 | const cleanCSS = require('gulp-clean-css'); 4 | const concat = require('gulp-concat'); 5 | const del = require('del'); 6 | const htmlmin = require('gulp-htmlmin'); 7 | const browserSync = require('browser-sync').create(); 8 | const compress = require('compression'); 9 | 10 | const paths = { 11 | styles: { 12 | src: './src/assets/styles/*.scss', 13 | dest: './dist/' 14 | }, 15 | html: { 16 | src: './src/*.html', 17 | dest: './dist/' 18 | }, 19 | images: { 20 | src: './src/assets/images/*', 21 | dest: './dist/images' 22 | } 23 | } 24 | 25 | function styles() { 26 | return src(paths.styles.src) 27 | .pipe(sass()) 28 | .pipe(cleanCSS()) 29 | .pipe(concat('main.min.css')) 30 | .pipe(dest(paths.styles.dest)) 31 | .pipe(browserSync.stream()); 32 | } 33 | 34 | function html() { 35 | return src(paths.html.src) 36 | .pipe(htmlmin({ collapseWhitespace: true })) 37 | .pipe(dest(paths.html.dest)) 38 | .pipe(browserSync.stream()); 39 | } 40 | 41 | function img() { 42 | return src(paths.images.src) 43 | .pipe(dest(paths.images.dest)); 44 | } 45 | 46 | function clean() { 47 | return del(['dist']) 48 | } 49 | 50 | const build = series(clean, parallel(html, styles, img)); 51 | 52 | const reload = browserSync.reload; 53 | function server() { 54 | browserSync.init({ 55 | server: { 56 | baseDir: './dist/', 57 | index: 'index.html', 58 | middleware: [compress()] 59 | } 60 | }); 61 | 62 | parallel(html, styles) 63 | watch('*.html').on('change', reload); 64 | watch(paths.styles.src, styles).on('change', reload); 65 | } 66 | 67 | exports.styles = styles; 68 | exports.html = html; 69 | exports.clean = clean; 70 | exports.build = build; 71 | exports.server = server; 72 | 73 | exports.default = build; -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 | Frontend Mentor | Social proof section

10,000+ of our users love our products.

We only provide great products combined with excellent customer service. See what our satisfied customers are saying about our services.

-------------------------------------------------------------------------------- /dist/main.min.css: -------------------------------------------------------------------------------- 1 | body,h1,li,p,ul{margin:0;padding:0}body{display:flex;justify-content:center;align-items:center;height:100vh;font-family:Spartan,Verdana,sans-serif;background:url(images/bg-pattern-top-desktop.svg),url(images/bg-pattern-bottom-desktop.svg);background-repeat:no-repeat;background-position:top left,bottom right;box-sizing:border-box}@media (max-width:1024px){body{margin-top:50px}}@media (max-width:824px){body{margin-top:50px}}li{list-style:none}a{text-decoration:none;color:#502050}img{display:block;max-width:100%}h1{font-size:16px}.container{max-width:1240px;margin-top:100px;display:grid;grid-template-columns:2fr 2fr 2fr;grid-template-areas:"info rating rating" "info rating rating" "depoiments depoiments depoiments" "footer footer footer"}@media (max-width:1024px){.container{margin:50px 30px 0 30px}}@media (max-width:824px){.container{grid-template-columns:100%;grid-template-areas:"info" "rating" "depoiments" "footer"}}.info{grid-area:info}.info h1{font-size:3rem;color:#502050;margin-bottom:10px}@media (max-width:425px){.info h1{font-size:2.25rem}}.info p{color:#937b92;font-weight:500}@media (max-width:824px){.info p{margin-bottom:40px}}.rating{grid-area:rating;margin-left:100px}@media (max-width:900px){.rating{margin-left:30px}}.rating .rating-container li{display:flex}.rating .rating-container li>div{display:flex;background:#f7f2f7;padding:20px 30px;border-radius:8px}@media (max-width:824px){.rating .rating-container li>div{display:block;margin:0 auto;width:280px;text-align:center}}.rating .rating-container li+li{margin-top:20px}.rating .rating-item-1{justify-content:flex-start}@media (max-width:824px){.rating .rating-item-1{justify-content:unset}}.rating .rating-item-2{justify-content:center}@media (max-width:824px){.rating .rating-item-2{justify-content:unset}}.rating .rating-item-3{justify-content:flex-end}@media (max-width:824px){.rating .rating-item-3{justify-content:unset}}.rating .stars{display:flex;margin-right:20px}@media (max-width:824px){.rating .stars{justify-content:center;margin-bottom:5px;margin-right:0}}.rating .stars img+img{margin-left:10px}.rating span{color:#502050;font-weight:700}.depoiments{grid-area:depoiments;margin-top:60px;height:300px}@media (max-width:824px){.depoiments{margin:40px auto 0 auto}}.depoiments .depoiments-container{display:flex;height:350px}@media (max-width:824px){.depoiments .depoiments-container{flex-direction:column;align-content:center;height:auto}}.depoiments .depoiments-container li{background:#502050;padding:30px;border-radius:8px;width:380px}@media (max-width:425px){.depoiments .depoiments-container li{width:unset}}.depoiments .depoiments-container li+li{margin-left:30px}@media (max-width:824px){.depoiments .depoiments-container li+li{margin-left:0;margin-top:20px}}.depoiments .depoiments-container li>p{color:#fff;margin:30px 0}.depoiments .depoiments-item-1{align-self:flex-start}@media (max-width:1024px){.depoiments .depoiments-item-1{align-self:unset}}.depoiments .depoiments-item-2{align-self:center}@media (max-width:1024px){.depoiments .depoiments-item-2{align-self:unset}}.depoiments .depoiments-item-3{align-self:flex-end}@media (max-width:1024px){.depoiments .depoiments-item-3{align-self:unset}}.depoiments .buyer{display:flex;align-items:center}.depoiments .buyer img{border-radius:50%}.depoiments .buyer-text{display:flex;flex-direction:column;font-size:16px;margin-left:20px;color:#fff}.depoiments .buyer-text p{color:#ee68a4;margin-top:2px}.attribution{margin-top:100px;font-size:11px;text-align:center;grid-area:footer}.attribution a{color:#3e52a3} 2 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Frontend Mentor | Social proof section 13 | 14 | 15 | 16 |
17 |
18 |

10,000+ of our users love our products.

19 |

20 | We only provide great products combined with excellent customer service. 21 | See what our satisfied customers are saying about our services. 22 |

23 |
24 | 25 |
26 | 64 |
65 | 66 |
67 | 110 |
111 | 112 | 117 |
118 | 119 | 120 | -------------------------------------------------------------------------------- /src/assets/styles/generals.scss: -------------------------------------------------------------------------------- 1 | @import "./variables.scss"; 2 | 3 | body, 4 | p, 5 | h1, 6 | ul, 7 | li { 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | body { 13 | display: flex; 14 | justify-content: center; 15 | align-items: center; 16 | height: 100vh; 17 | font-family: "Spartan", Verdana, sans-serif; 18 | background: url("./images/bg-pattern-top-desktop.svg"), url("./images/bg-pattern-bottom-desktop.svg"); 19 | background-repeat: no-repeat; 20 | background-position: top left, bottom right; 21 | box-sizing: border-box; 22 | @media (max-width: 1024px) { 23 | margin-top: 50px; 24 | } 25 | @media (max-width: 824px) { 26 | margin-top: 50px; 27 | } 28 | } 29 | 30 | li { 31 | list-style: none; 32 | } 33 | 34 | a { 35 | text-decoration: none; 36 | color: #502050; 37 | } 38 | 39 | img { 40 | display: block; 41 | max-width: 100%; 42 | } 43 | 44 | h1 { 45 | font-size: 16px; 46 | } 47 | 48 | .container { 49 | max-width: 1240px; 50 | margin-top: 100px; 51 | display: grid; 52 | grid-template-columns: 2fr 2fr 2fr; 53 | grid-template-areas: 54 | "info rating rating" 55 | "info rating rating" 56 | "depoiments depoiments depoiments" 57 | "footer footer footer"; 58 | @media (max-width: 1024px) { 59 | margin: 50px 30px 0px 30px; 60 | } 61 | @media (max-width: 824px) { 62 | grid-template-columns: 100%; 63 | grid-template-areas: 64 | "info" 65 | "rating" 66 | "depoiments" 67 | "footer"; 68 | } 69 | } 70 | 71 | .info { 72 | grid-area: info; 73 | h1 { 74 | font-size: 3rem; 75 | color: $purple; 76 | margin-bottom: 10px; 77 | @media (max-width: 425px) { 78 | font-size: 2.25rem; 79 | } 80 | } 81 | p { 82 | color: $soft-purple; 83 | font-weight: 500; 84 | @media (max-width: 824px) { 85 | margin-bottom: 40px; 86 | } 87 | } 88 | } 89 | 90 | .rating { 91 | grid-area: rating; 92 | margin-left: 100px; 93 | @media (max-width: 900px) { 94 | margin-left: 30px; 95 | } 96 | 97 | .rating-container li { 98 | display: flex; 99 | & > div { 100 | display: flex; 101 | background: $light-soft-purple; 102 | padding: 20px 30px; 103 | border-radius: 8px; 104 | @media (max-width: 824px) { 105 | display: block; 106 | margin: 0 auto; 107 | width: 280px; 108 | text-align: center; 109 | } 110 | } 111 | & + li { 112 | margin-top: 20px; 113 | } 114 | } 115 | 116 | .rating-item-1 { 117 | justify-content: flex-start; 118 | @media (max-width: 824px) { 119 | justify-content: unset; 120 | } 121 | } 122 | 123 | .rating-item-2 { 124 | justify-content: center; 125 | @media (max-width: 824px) { 126 | justify-content: unset; 127 | } 128 | } 129 | 130 | .rating-item-3 { 131 | justify-content: flex-end; 132 | @media (max-width: 824px) { 133 | justify-content: unset; 134 | } 135 | } 136 | 137 | .stars { 138 | display: flex; 139 | margin-right: 20px; 140 | @media (max-width: 824px) { 141 | justify-content: center; 142 | margin-bottom: 5px; 143 | margin-right: 0px; 144 | } 145 | & img + img { 146 | margin-left: 10px; 147 | } 148 | } 149 | 150 | & span { 151 | color: $purple; 152 | font-weight: bold; 153 | } 154 | } 155 | 156 | .depoiments { 157 | grid-area: depoiments; 158 | margin-top: 60px; 159 | height: 300px; 160 | @media (max-width: 824px) { 161 | margin: 40px auto 0px auto; 162 | } 163 | 164 | .depoiments-container { 165 | display: flex; 166 | height: 350px; 167 | @media (max-width: 824px) { 168 | flex-direction: column; 169 | align-content: center; 170 | height: auto; 171 | } 172 | & li { 173 | background: $purple; 174 | padding: 30px; 175 | border-radius: 8px; 176 | width: 380px; 177 | @media (max-width: 425px) { 178 | width: unset; 179 | } 180 | & + li { 181 | margin-left: 30px; 182 | @media (max-width: 824px) { 183 | margin-left: 0; 184 | margin-top: 20px; 185 | } 186 | } 187 | & > p { 188 | color: $white; 189 | margin: 30px 0; 190 | } 191 | } 192 | } 193 | 194 | .depoiments-item-1 { 195 | align-self: flex-start; 196 | @media (max-width: 1024px) { 197 | align-self: unset; 198 | } 199 | } 200 | 201 | .depoiments-item-2 { 202 | align-self: center; 203 | @media (max-width: 1024px) { 204 | align-self: unset; 205 | } 206 | } 207 | 208 | .depoiments-item-3 { 209 | align-self: flex-end; 210 | @media (max-width: 1024px) { 211 | align-self: unset; 212 | } 213 | } 214 | 215 | .buyer { 216 | display: flex; 217 | align-items: center; 218 | & img { 219 | border-radius: 50%; 220 | } 221 | } 222 | 223 | .buyer-text { 224 | display: flex; 225 | flex-direction: column; 226 | font-size: 16px; 227 | margin-left: 20px; 228 | color: $white; 229 | & p { 230 | color: $soft-pink; 231 | margin-top: 2px; 232 | } 233 | } 234 | } 235 | 236 | .attribution { 237 | margin-top: 100px; 238 | font-size: 11px; 239 | text-align: center; 240 | grid-area: footer; 241 | & a { 242 | color: hsl(228, 45%, 44%); 243 | } 244 | } 245 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Frontend Mentor - Social proof section 2 | 3 | ![Design preview for the Social proof section coding challenge](https://i.imgur.com/CC5c8lT.jpg) 4 | 5 | ## Welcome! 👋 6 | 7 | Thanks for checking out this front-end coding challenge. 8 | 9 | [Frontend Mentor](https://www.frontendmentor.io) challenges allow you to improve your skills in a real-life workflow. 10 | 11 | **To do this challenge, you need a basic understanding of HTML and CSS.** 12 | 13 | ## Demo 14 | 15 | [Click here to see my challenge done](https://social-proof-section-six-eta.vercel.app/) 16 | 17 | ## The challenge 18 | 19 | Your challenge is to build out this social proof section and get it looking as close to the design as possible. 20 | 21 | You can use any tools you like to help you complete the challenge. So if you've got something you'd like to practice, feel free to give it a go. 22 | 23 | Your users should be able to: 24 | 25 | - View the optimal layout for the section depending on their device's screen size 26 | 27 | Want some support on the challenge? [Join our Slack community](https://www.frontendmentor.io/slack) and ask questions in the **#help** channel. 28 | 29 | ## Where to find everything 30 | 31 | Your task is to build out the project to the designs inside the `/design` folder. You will find both a mobile and a desktop version of the design to work to. 32 | 33 | The designs are in JPG static format. This will mean that you'll need to use your best judgment for styles such as `font-size`, `padding` and `margin`. This should help train your eye to perceive differences in spacings and sizes. 34 | 35 | If you would like the Sketch file in order to inspect the design in more detail you can [subscribe as a PRO member](https://www.frontendmentor.io/pro). 36 | 37 | You will find all the required assets in the `/images` folder. The assets are already optimized. 38 | 39 | There is also a `style-guide.md` file, which contains the information you'll need, such as color palette and fonts. 40 | 41 | ## Building your project 42 | 43 | Feel free to use any workflow that you feel comfortable with. Below is a suggested process, but do not feel like you need to follow these steps: 44 | 45 | 1. Initialize your project as a public repository on GitHub. Use the command `npm install` in terminal to download the dependencies this project, next, use `npm start`. This will make it easier to share your code with the community if you need some help. If you're not sure how to do this, have a read through of this Try Git resource. 46 | 2. Configure your repository to publish your code to a URL. This will also be useful if you need some help during a challenge as you can share the URL for your project with your repo URL. There are a number of ways to do this, but we recommend using [Vercel](https://bit.ly/fem-vercel). We've got more information about deploying your project with Vercel below. 47 | 3. Look through the designs to start planning out how you'll tackle the project. This step is crucial to help you think ahead for CSS classes that you could create to make reusable styles. 48 | 4. Before adding any styles, structure your content with HTML. Writing your HTML first can help focus your attention on creating well-structured content. 49 | 5. Write out the base styles for your project, including general content styles, such as `font-family` and `font-size`. 50 | 6. Start adding styles to the top of the page and work down. Only move on to the next section once you're happy you've completed the area you're working on. 51 | 52 | ## Deploying your project 53 | 54 | As mentioned above, there are a number of ways to host your project for free. We recommend using [Vercel](https://bit.ly/fem-vercel) as it's an amazing service and extremely simple to get set up with. If you'd like to use Vercel, here are some steps to follow to get started: 55 | 56 | 1. [Sign up to Vercel](https://bit.ly/fem-vercel-signup) and go through the onboarding flow, ensuring your GitHub account is connected by using their [Vercel for GitHub](https://vercel.com/docs/v2/git-integrations/vercel-for-github) integration. 57 | 2. Connect your project to Vercel from the ["Import project" page](https://vercel.com/import), using the "From Git Repository" button and selecting the project you want to deploy. 58 | 3. Once connected, every time you `git push`, Vercel will create a new [deployment](https://vercel.com/docs/v2/platform/deployments) and the deployment URL will be shown on your [Dashboard](https://vercel.com/dashboard). You will also receive an email for each deployment with the URL. 59 | 60 | ## Sharing your solution 61 | 62 | There are multiple places you can share your solution: 63 | 64 | 1. Submit it on the platform so that other users will see your solution on the site. Here's our ["Complete guide to submitting solutions"](https://medium.com/frontend-mentor/a-complete-guide-to-submitting-solutions-on-frontend-mentor-ac6384162248) to help you do that. 65 | 2. Share your solution page in the **#finished-projects** channel of the [Slack community](https://www.frontendmentor.io/slack). 66 | 3. Tweet [@frontendmentor](https://twitter.com/frontendmentor) and mention **@frontendmentor** including the repo and live URLs in the tweet. We'd love to take a look at what you've built and help share it around. 67 | 68 | ## Giving feedback 69 | 70 | Feedback is always welcome, so if you have any to give on this challenge please email hi[at]frontendmentor[dot]io. 71 | 72 | This challenge is completely free. Please share it with anyone who will find it useful for practice. 73 | 74 | **Have fun building!** 🚀 75 | 76 | ## Community Sponsors 77 | 78 | A massive thank you to our community sponsors! 79 | 80 | - [Zero to Mastery](https://bit.ly/fem-ztm) is an incredible learning resource for all things web development. Led by Andrei Neagoie, the courses are really high-quality content and cover a wide range of in-demand skills. 81 | - [Diversify Tech](https://bit.ly/fem-diversify-tech) is an amazing resource for underrepresented people in tech. The site features job listings for anyone seeking new opportunities. The resource section is also full of useful links to dive into! 82 | - [Triplebyte](http://bit.ly/fem-triplebyte) is a really nice offering if you're looking for a new role. It's a free service that lets you take a confidential quiz. Based on your results companies will pitch you for their vacant roles! 83 | --------------------------------------------------------------------------------