Skip to content

Commit

Permalink
fix: footer position and text
Browse files Browse the repository at this point in the history
habby1337 committed Mar 14, 2024
1 parent f7675e0 commit c5ca595
Showing 1 changed file with 28 additions and 26 deletions.
54 changes: 28 additions & 26 deletions src/Components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,32 +1,34 @@
const Footer = () => {
return (
<footer className="relative flex items-center justify-around w-screen h-16 p-3 pt-0 pb-0 text-xs bg-slate-200 text-slate-600 lg:text-base">
<p>Serverless Italy © 2024</p>
<div className="w-fit">
<ul className="flex items-center justify-center gap-4 ">
<li>
<a href="https://twitter.com/ServerlessItaly" target="_blank" className="transition-all hover:underline">
Twitter
</a>
</li>
<li>
<a href="https://linktr.ee/serverlessitaly" target="_blank" className="transition-all hover:underline">
Linktr.ee
</a>
</li>
<li>
<a
href="https://www.meetup.com/it-IT/serverless-italy/"
target="_blank"
className="transition-all hover:underline"
>
Meetup
</a>
</li>
</ul>
<footer className="relative flex flex-col items-center justify-between w-screen h-16 p-3 pt-0 pb-0 text-xs md:flex-row bg-slate-200 text-slate-600 lg:text-base">
<div className="flex items-center justify-center pt-3 md:pt-0">
<p>Serverless Italy © 2024</p>
<div className="ml-6">
<ul className="flex items-center justify-center gap-4 ">
<li>
<a href="https://twitter.com/ServerlessItaly" target="_blank" className="transition-all hover:underline">
Twitter
</a>
</li>
<li>
<a href="https://linktr.ee/serverlessitaly" target="_blank" className="transition-all hover:underline">
Linktr.ee
</a>
</li>
<li>
<a
href="https://www.meetup.com/it-IT/serverless-italy/"
target="_blank"
className="transition-all hover:underline"
>
Meetup
</a>
</li>
</ul>
</div>
</div>
<div className="hidden md:block">
<p className="">
<div className="pb-4 mt-4 md:mt-0 md:pb-0">
<p className="text-center">
Built with ❤️ by{" "}
<a href="https://tensi.dev" target="_blank" className="transition-all hover:underline ">
Federico Tensi

0 comments on commit c5ca595

Please sign in to comment.