Scaffold out UI components

This commit is contained in:
rektdeckard
2020-07-21 23:07:36 -04:00
parent 016e6d987b
commit 19d9b8c7d2
24 changed files with 1063 additions and 528 deletions

View File

@@ -0,0 +1,23 @@
import React from "react";
import { Droid } from "phosphor-react";
import "./Footer.css";
type FooterProps = {};
const Footer: React.FC<FooterProps> = () => {
return (
<footer>
<span role="img" aria-label="Emoji of female technologist, male technologist, and cat">👩🏻💻👨🏻💻🐱</span>
<div>Copyright © 2020 Phosphor Icons</div>
<div>
Phosphor Icons is designed by{" "}
<a href="https://helenazhang.com">Helena Zhang</a> & built by{" "}
<a href="https://tobiasfried.com">Tobias Fried</a>, with love.
</div>
<button style={{ display: "flex", alignItems: "center", padding: 8 }}>Phosphor for <Droid /></button>
</footer>
);
};
export default Footer;