Skip to content

Commit 111e189

Browse files
committed
chore: add Vercel logo to footer
1 parent b61161f commit 111e189

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
[![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/)
1010

11+
<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>
12+
1113
## Sponsors
1214

1315
&lt;your name here>

apps/app/public/powered-by-vercel.svg

Lines changed: 1 addition & 0 deletions
Loading

apps/app/src/components/Footer.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import Link from "next/link";
2+
import VercelIcon from "../../public/powered-by-vercel.svg";
23
import { Container } from "./Container";
34

45
export const Footer = () => (
56
<footer className="bg-primary">
6-
<Container className="flex items-center justify-center py-5 sm:justify-end">
7+
<Container className="flex flex-col items-center justify-center py-5 sm:justify-end">
78
<nav className="flex text-sm text-white">
89
<ul className="flex list-none flex-wrap justify-center gap-y-4 gap-x-7">
910
<li>
@@ -43,6 +44,16 @@ export const Footer = () => (
4344
</li>
4445
</ul>
4546
</nav>
47+
<p className="mt-3 text-lg font-bold not-italic">
48+
<a
49+
href="https://vercel.com?utm_source=typeofweb&utm_campaign=oss"
50+
target="_blank"
51+
rel="noopener noreferrer"
52+
className="mt-10 inline-block"
53+
>
54+
<VercelIcon className="mx-auto" width={209} height={40} />
55+
</a>
56+
</p>
4657
</Container>
4758
</footer>
4859
);

0 commit comments

Comments
 (0)