Skip to content

Commit

Permalink
chore: add Vercel logo to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
typeofweb committed Jan 5, 2023
1 parent b61161f commit 111e189
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

[![Sponsor Type of Web](https://badgen.net/badge/icon/Sponsor%20%E2%9D%A4?icon=github&label&color=ea4aaa)](https://github.com/sponsors/typeofweb) ![Test and Build](https://github.com/typeofweb/devfaq/workflows/Test%20and%20Build/badge.svg) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=typeofweb_devfaq&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=typeofweb_devfaq) [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Ftypeofweb%2Fdevfaq.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Ftypeofweb%2Fdevfaq?ref=badge_shield) [![Discord](https://img.shields.io/discord/440163731704643589?color=738ADB&label=Discord&logo=discord&logoColor=white)](https://discord.typeofweb.com/)

<a href="https://vercel.com?utm_source=typeofweb&utm_campaign=oss"><img src="public/powered-by-vercel.svg" height="30" alt="Powered by Vercel"/></a>

## Sponsors

&lt;your name here>
Expand Down
1 change: 1 addition & 0 deletions apps/app/public/powered-by-vercel.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion apps/app/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import Link from "next/link";
import VercelIcon from "../../public/powered-by-vercel.svg";
import { Container } from "./Container";

export const Footer = () => (
<footer className="bg-primary">
<Container className="flex items-center justify-center py-5 sm:justify-end">
<Container className="flex flex-col items-center justify-center py-5 sm:justify-end">
<nav className="flex text-sm text-white">
<ul className="flex list-none flex-wrap justify-center gap-y-4 gap-x-7">
<li>
Expand Down Expand Up @@ -43,6 +44,16 @@ export const Footer = () => (
</li>
</ul>
</nav>
<p className="mt-3 text-lg font-bold not-italic">
<a
href="https://vercel.com?utm_source=typeofweb&utm_campaign=oss"
target="_blank"
rel="noopener noreferrer"
className="mt-10 inline-block"
>
<VercelIcon className="mx-auto" width={209} height={40} />
</a>
</p>
</Container>
</footer>
);

0 comments on commit 111e189

Please sign in to comment.