Skip to content
Merged
Show file tree
Hide file tree
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
21 changes: 21 additions & 0 deletions project-app/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

import Link from "next/link"
import {AiFillFacebook,AiFillInstagram,AiOutlineTwitter} from "react-icons/ai";





export default function Footer () {
return (
<footer className=" border-black border-2 h-20 m-[0.2rem] pl-[43%] bg-[#004F54]">
<div class="flex justify-evenly items-center space-x-8 space-y-1 h-auto w-min">
<div class="item w-12 h-12"><a href="https://www.facebook.com" target='blank'><AiFillFacebook className="h-12 w-12 rounded-md m-0 shadow-md text-gray-50"/></a></div>
<div class="item w-12 h-12"><a href="https://www.instagram.com" target='blank'><AiFillInstagram className="h-12 w-12 rounded-md m-0 shadow-md text-gray-50"/></a></div>
<div class="item w-12 h-12"><a href="https://www.twitter.com" target='blank'><AiOutlineTwitter className="h-12 w-12 rounded-md m-0 shadow-md text-gray-50"/></a></div>
</div>
<p className="text-base pl-[4%] m-[.1rem] tracking-wider font-normal text-gray-50"> Copyright &copy;2022</p>
</footer>
)
}

5 changes: 5 additions & 0 deletions project-app/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ import Navbar from "../components/Navbar/Navbar";
import dynamic from "next/dynamic";
import LandingBanner from "../components/Landing/Landing";
import Weather from "../components/Weather/Weather";

import Footer from "../components/Footer/Footer";

import Stats from "../components/Stats/Stats";


const MapWithNoSSR = dynamic(() => import("../components/Map/Map.jsx"), {
ssr: false,
});
Expand All @@ -23,6 +27,7 @@ export default function Home() {
<Stats />
<MapWithNoSSR />
<Weather />
<Footer />
</div>
</>
);
Expand Down