Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update footer design #168

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 44 additions & 28 deletions components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,52 @@ import React from 'react';

export default function Footer() {
return (
<footer className="flex flex-col mb-5 space-y-5 text-center">
<span>
{
'Margarita Humanitarian Foundation is a 501(c)(3) nonprofit registered in the US.'
}
</span>
<div className="flex justify-center items-center cursor-pointer">
<a
className="mr-4 mt-2"
href="https://vercel.com?utm_source=margaritahumanitarian&utm_campaign=oss"
>
<footer className="p-4 grid md:grid-cols-2 bg-neutral text-neutral-content justify-items-center ">
<div className="flex items-center justify-evenly">
<div>
<Image
alt="Powered by Vercel"
height="44"
src="/images/powered-by-vercel.svg"
width="212"
alt="mhf logo"
className=""
height="120"
src="/images/MHF-Color-300x300.png"
width="120"
/>
</a>
<a
href="https://www.guidestar.org/profile/84-4323038"
rel="noreferrer"
target="_blank"
>
<Image
alt="GuideStar Seal of Transparency"
height="80"
src="/images/GuideStarSeal.svg"
width="80"
/>
</a>
</div>
<div className="pl-4">
{
'Margarita Humanitarian Foundation is a 501(c)(3) non-profit organization that provides humanitarian aid to families in need.'
}
</div>
</div>
<div className="flex items-center">
<div>
<a
className="mr-4 mt-2"
href="https://vercel.com?utm_source=margaritahumanitarian&utm_campaign=oss"
>
<Image
alt="Powered by Vercel"
height="44"
src="/images/powered-by-vercel.svg"
width="212"
/>
</a>
</div>
<div>
{' '}
<a
href="https://www.guidestar.org/profile/84-4323038"
rel="noreferrer"
target="_blank"
>
<Image
alt="GuideStar Seal of Transparency"
height="80"
src="/images/GuideStarSeal.svg"
width="80"
/>
</a>
</div>
</div>
</footer>
);
Expand Down