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

add navbar #18

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Binary file added public/logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

const Footer = () => {
return (

<div className="bg-fosspurple w-full h-[200px]">
<img src="https://s3-alpha-sig.figma.com/img/0744/3a6a/5668e3e3d25cb5cc5228f2627f82c196?Expires=1697414400&Signature=A7Ume9YayB4ViVK~hWUqmKab-nhQlfVnhw2ehy4Qu65UQSRJdB5s4bOa9NbW6qVvXF4ZmGnk39m7RpryJ-Q9XHwMBMCW2~eWOaaJ0M7oXMok4h3hHMqL6ZXfdVsbqwusYBFw2voG6G1N6p3TglgzcbV7UohLjHpsyIrfC4l7MZ672vSn7olu08uIjJysxDA-5m3UwVe-5Dnfzu9n674HoLHWMw55mtb83vIaMNlOWKnODt1DAVp3BhwvRQNOWjhmteGltTvtzaav-6pesxy5BZA4WdNlRkceje9qvFo9mr6eoMlJafITb-4xXyJHDo1q4S0SPwVa8Qi-X~CkGfUKFw__&Key-Pair-Id=APKAQ4GOSFWCVNEHN3O4" alt="fossmec-logo"
className=" max-w-[120px] ml-auto mr-auto pt-[10px] pb-[6px]" />
Expand Down Expand Up @@ -33,8 +34,9 @@ const Footer = () => {

</div>
<p className=" text-center ml-auto mr-auto font-semibold text-xs pb-[5px] pt-[20px] opacity-40">Copyright @ 2023 | FOSS MEC</p>

</div>
);
}

export default Footer;
export default Footer;
33 changes: 30 additions & 3 deletions src/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,43 @@

import "./Navbar.css";
import { useState } from "react";
import React, { useState } from 'react'
import logo from '../../assets/fosspng.svg'

const Navbar = () => {


return (
<div>


<div className="bg-[#071330] justify-between items-center p-4" style={{
display:"flex" ,
}} >
<img src="/logo.png"></img>
<div className="flex gap-2">
<a className="text-white" href="#"> Home </a>

<a className="text-white" href="#"> Event </a>

<a className="text-white" href="#"> Team</a>

<a className="text-white" href="#"> About </a>

<a className="text-white" href="#"> Gallery </a>

</div>
<button className="text-white bg-yellow-600 p-2 rounded-full" >Contact Us!</button>

</div>
);
};




export default Navbar;