Skip to content

Commit

Permalink
Add Google OAuth and update logo images
Browse files Browse the repository at this point in the history
  • Loading branch information
sachiniLekamge committed Sep 26, 2024
1 parent 4c19b6a commit e48270c
Show file tree
Hide file tree
Showing 8 changed files with 303 additions and 716 deletions.
1 change: 1 addition & 0 deletions FrontEnd/src/assets/googleLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions FrontEnd/src/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions FrontEnd/src/assets/logoLeaf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion FrontEnd/src/assets/react.svg

This file was deleted.

4 changes: 2 additions & 2 deletions FrontEnd/src/components/common/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Link } from 'react-router-dom';
import { FaFacebookF, FaInstagram, FaTwitter, FaYoutube } from 'react-icons/fa';
import { ImLeaf } from 'react-icons/im';
import logoLeaf from '../../assets/logoLeaf.svg';

const Footer = () => {
return (
<footer className="bg-darkbg text-gray-300 py-5 mt-auto">
<div className="container mx-auto px-4 md:px-6 lg:px-8 flex flex-col md:flex-row items-center justify-between">
<div className="flex items-center">
<Link to="/" className="flex-shrink-0 flex items-center">
<ImLeaf className="h-8 w-8 text-white" />
<img src={logoLeaf} alt="logo" className="w-16 h-16" />
<span className="text-white font-extrabold ml-2 text-3xl">
AgroHelp
</span>
Expand Down
4 changes: 2 additions & 2 deletions FrontEnd/src/components/common/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
FaLock,
FaPen,
} from 'react-icons/fa';
import { ImLeaf } from 'react-icons/im';
import logoLeaf from '../../assets/logoLeaf.svg';
import { HiMenu, HiOutlineX } from 'react-icons/hi';
import { useGlobalContext } from '../../context/ContextProvider';
import { logout } from '../../api/user';
Expand Down Expand Up @@ -100,7 +100,7 @@ const Navbar = () => {
<div className="flex justify-between h-16">
<div className="flex items-center">
<Link to="/home" className="flex-shrink-0 flex items-center">
<ImLeaf className="h-8 w-8 text-white" />
<img src={logoLeaf} alt="logo" className="w-16 h-16" />
<span className="text-white font-extrabold ml-2 text-3xl">
AgroHelp
</span>
Expand Down
Loading

0 comments on commit e48270c

Please sign in to comment.