-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooterLinks.js
45 lines (42 loc) · 988 Bytes
/
FooterLinks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React from "react";
import styled from "styled-components";
// some topics on footer
export default function FooterLinks() {
return (
<FooterLinksContainer>
<p>© suki market 2021</p>
<p>customer support</p>
<p>order shipping information</p>
<p>about</p>
<p>collaborations</p>
<p>wholesalers & retailers</p>
<p>terms & conditions</p>
<p>privacy policy</p>
<p>powered by shopify</p>
</FooterLinksContainer>
);
}
const FooterLinksContainer = styled.div`
padding: 2rem;
background-color: #000;
width: 100%;
display: grid;
grid-template-columns: auto auto auto auto;
@media (max-width: 768px) {
grid-template-columns: auto auto;
}
@media (max-width: 768px) {
grid-template-columns: auto;
}
p {
cursor: pointer;
letter-spacing: 1.5px;
font-size: 0.7rem;
color: #fff;
text-transform: uppercase;
font-weight: lighter;
&:hover {
color: skyblue;
}
}
`;