-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from danreale/12-add-footer
added footer with coffee and email links
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
function Footer() { | ||
return ( | ||
<footer className=""> | ||
<div className="mx-auto max-w-screen-xl px-4 py-8 sm:px-6 lg:px-8"> | ||
<div className="grid items-center justify-center"> | ||
<div className="flex justify-center text-teal-600 px-4"> | ||
<a href="https://www.buymeacoffee.com/cap10chunks" target="_blank"> | ||
<img | ||
src="https://cdn.buymeacoffee.com/buttons/v2/default-red.png" | ||
alt="Buy Me A Coffee" | ||
className="h-16" | ||
/> | ||
</a> | ||
</div> | ||
|
||
<a | ||
className="mt-4 text-center text-sm underline text-blue-600" | ||
href="mailto:[email protected]?subject=Pediatric Heart Transplant Site" | ||
> | ||
Email Me | ||
</a> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
} | ||
|
||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters