Skip to content

Commit

Permalink
Add Footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Roma36 committed Aug 31, 2023
1 parent 2a60f9f commit d4db20d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import React from "react";
import NavLogo from "@site/static/img/nav-logo.svg";

export default function Footer() {
return (
<footer className="text-light2 flex flex-col md:flex-row items-center justify-between gap-6 w-full py-6 px-6 md:px-28">
<NavLogo />
<div className="flex flex-row gap-6 align-center">
<a className="cursor-pointer">Manifesto</a>
<a className="cursor-pointer">Supporters</a>
<a className="cursor-pointer">FAQs</a>
<a className="cursor-pointer">Blog</a>
<a className="cursor-pointer">Docs</a>
</div>
<div className="flex flex-row gap-6">
<a className="cursor-pointer header-github-link" />
<a className="cursor-pointer header-twitter-link" />
<a className="cursor-pointer header-slack-link" />
</div>
</footer>
);
}
2 changes: 2 additions & 0 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import FAQ from "../components/FAQ";
import HowToSupport from "../components/HowToSupport";
import HowToContribute from "../components/HowToContribute";
import LatestNews from "../components/LatestNews";
import Footer from "../components/Footer";

export default function Home() {
return (
Expand All @@ -12,6 +13,7 @@ export default function Home() {
<HowToSupport />
<HowToContribute />
<LatestNews />
<Footer />
</Layout>
);
}

0 comments on commit d4db20d

Please sign in to comment.