Skip to content

Commit a626fef

Browse files
authored
πŸ“ Add Powered by Vercel (#196)
1 parent 6b6698a commit a626fef

File tree

4 files changed

+35
-1
lines changed

4 files changed

+35
-1
lines changed

β€Ž.changeset/healthy-islands-draw.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'socialify': patch
3+
---
4+
5+
Add powered by vercel

β€ŽREADME.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,13 @@ _Part of [@MLH-Fellowship](https://github.com/MLH-Fellowship) Pod 1.0.6_
8383

8484
- [MIT](https://wei.mit-license.org)
8585

86-
## SLA
86+
## Hosting
87+
88+
<a href="https://vercel.com/?utm_source=github-socialify&utm_campaign=oss">
89+
<img width="159" height="33" alt="Powered by Vercel" src="https://user-images.githubusercontent.com/5880908/218415645-ac47f9ba-0d60-47eb-950c-ed10bba1e7f6.png" />
90+
</a>
91+
92+
### SLA
8793

8894
Socialify is under active development. Design and project domain are subject to change without notice.
8995

β€Žsrc/components/footer/__snapshots__/footer.test.tsx.snap

+12
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,17 @@ exports[`Footer renders 1`] = `
2626
</a>
2727
</p>
2828
</div>
29+
<a
30+
class="absolute bottom-2 right-2"
31+
href="https://vercel.com/?utm_source=github-socialify&utm_campaign=oss"
32+
target="_blank"
33+
>
34+
<img
35+
alt="Powered by Vercel"
36+
height="33"
37+
src="https://user-images.githubusercontent.com/5880908/218415645-ac47f9ba-0d60-47eb-950c-ed10bba1e7f6.png"
38+
width="159"
39+
/>
40+
</a>
2941
</footer>
3042
`;

β€Žsrc/components/footer/footer.tsx

+11
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@ const Footer = () => {
2121
</Link>
2222
</p>
2323
</div>
24+
<Link
25+
className="absolute bottom-2 right-2"
26+
href="https://vercel.com/?utm_source=github-socialify&utm_campaign=oss"
27+
target="_blank">
28+
<img
29+
alt="Powered by Vercel"
30+
src="https://user-images.githubusercontent.com/5880908/218415645-ac47f9ba-0d60-47eb-950c-ed10bba1e7f6.png"
31+
width={159}
32+
height={33}
33+
/>
34+
</Link>
2435
</footer>
2536
)
2637
}

0 commit comments

Comments
Β (0)