We only provide great products combined with excellent customer service. See what our satisfied customers are saying about our services.
Rated 5 Stars in Reviews
Rated 5 Stars in Report Guru
Rated 5 Stars in BestTech
Colton Smith
Verified Buyer
"We needed the same printed design as the one we had ordered a week prior. Not only did they find the original order, but we also received it in time. Excellent!"
Irene Roberts
Verified Buyer
"Customer service is always excellent and very quick turn around. Completely delighted with the simplicity of the purchase and the speed of delivery."
Anne Wallace
Verified Buyer
"Put an order with this company and can only praise them for the very high standard. Will definitely use them again and recommend them to everyone!"
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 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 | Rated 5 Stars in Reviews
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 | Rated 5 Stars in Report Guru
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 | Rated 5 Stars in BestTech
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
Colton Smith
73 |
Verified Buyer
74 |
75 |
76 |
77 | "We needed the same printed design as the one we had ordered a week prior. Not only did they find the
78 | original order, but we also received it in time. Excellent!"
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
Irene Roberts
87 |
Verified Buyer
88 |
89 |
90 |
91 | "Customer service is always excellent and very quick turn around. Completely delighted with the simplicity
92 | of the purchase and the speed of delivery."
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
Anne Wallace
101 |
Verified Buyer
102 |
103 |
104 |
105 | "Put an order with this company and can only praise them for the very high
106 | standard. Will definitely use them again and recommend them to everyone!"
107 |
108 |
109 |
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 | 
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 |
--------------------------------------------------------------------------------