Skip to content

Commit

Permalink
footer component completed (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
Webnai authored Aug 23, 2024
1 parent 3e10da6 commit 649ec86
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions frontend/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@

import Image from "next/image";

export default function Footer() {
return (
<div>Footer goes here....</div>
<div className="w-[80%] m-auto lg:mt-20">
<div className="w-[80%] lg:w-[30%] mb-10 flex flex-col text-center m-auto md:m-0 md:text-start md:mb-10">
<Image src="/images/logo.png" alt="Logo" width={100} height={36} className="self-center md:self-start" />
<p className="text-subtle-text mt-6">
Secure, Transparent, and Fair Voting for Everyone
</p>
</div>

<div className="flex gap-8 justify-between md:justify-end py-4 border-t-subtle-text border-t-2">
<p className="text-subtle-text text-[12px]">© 2024 ABVS. All Rights Reserved.</p>
<p className="text-subtle-text text-[12px]">Privacy Policy</p>
</div>
</div>
);
}
}

0 comments on commit 649ec86

Please sign in to comment.