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

created footer #16

Merged
merged 8 commits into from
Jan 23, 2024
Merged
Changes from 1 commit
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
39 changes: 36 additions & 3 deletions src/components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,40 @@
import React from "react";
import logo from "@/public/assets/FooterLogo.svg";
import Image from "next/image";

import {
FaInstagram,
FaDiscord,
FaYoutube,
FaSlack,
FaEnvelope,
FaMediumM,
} from "react-icons/fa";

const Footer = () => {
return <div>Footer</div>;
return (
<div className="bg-black flex w-full pl-6 pb-14 pt-28">
<div className="grid grid-cols-11 text-white justify-between w-full ">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

instead of 11 columns try use changing the width for each column to have it span more.

<div className="flex justify-start col-span-5 mr-10">
<Image src={logo} />
</div>
<div className="font-montserrat flex flex-col space-y-8 min-w-fit text-right pt-7 mb-6 col-span-3">
<div className="text-xl font-semibold">contact us!</div>
<div className="text-xl font-semibold pb-10">
Winston Chung Hall, 446 N Campus Dr, Riverside, CA 92507
</div>
<div className="text-xl font-semibold">714-749-5576</div>
</div>
<div className="bg-white w-1 h-52 flex justify-start ml-16 mt-7"></div>
<div className="grid grid-cols-2 gap-10 space-x-2 text-5xl mt-7 cols-span-2">
<FaInstagram />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make all these links. For now, just include basic links later we will add hsp socials.

<FaDiscord />
<FaYoutube />
<FaSlack />
<FaEnvelope />
<FaMediumM />
</div>
</div>
</div>
);
};

export default Footer;