blob: 448da544bb323194dc0e16a5e285a78f3f5ab0eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import React from "react";
import { IoHeart } from "react-icons/io5";
import * as Styled from "./index.styled";
export function Footer() {
return (
<footer>
<Styled.Text>
Made with <IoHeart /> by{" "}
<Styled.Link href="https://epicwolverine.com">
EpicWolverine
</Styled.Link>
{" "}based on the work of{" "}
<Styled.Link href="https://twitter.com/synowski_maciej">
Maciej Synowski
</Styled.Link>
</Styled.Text>
</footer>
);
}
|