diff --git a/.all-contributorsrc b/.all-contributorsrc index 5d58ff8..89f0615 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -97,7 +97,7 @@ } ], "contributorsPerLine": 7, - "projectName": "project-oregano", + "projectName": "project-raisin", "projectOwner": "dscnitrourkela", "repoType": "github", "repoHost": "https://github.com", diff --git a/config/content/Navigation.js b/config/content/Navigation.js index f3070d6..0f741c7 100644 --- a/config/content/Navigation.js +++ b/config/content/Navigation.js @@ -1,37 +1,22 @@ /* eslint-disable max-len */ -import Logo from '../../images/navLogo.svg'; export default { title: 'Navigation', logo: { - src: Logo, - alt: 'Innovision 2022', - text: 'Innovision 2022', + text: 'Innovision 2k23', }, navItems: [ { - name: 'Technical Events', - link: '/technical-events', + name: 'Events', + link: '/', }, { - name: 'Fun Events', - link: '/fun-events', + name: 'Events', + link: '/', }, { - name: 'Workshop', - link: '/workshops', - }, - { - name: 'Guest Lectures', - link: '/guest-lectures', - }, - { - name: 'Exhibition', - link: '/exhibition', - }, - { - name: 'Pro Shows', - link: '/proshows', + name: 'Events', + link: '/', }, ], }; diff --git a/src/components/marginals/Navbar/AuthButton.jsx b/src/components/marginals/Navbar/AuthButton.jsx deleted file mode 100644 index 2f4b6ac..0000000 --- a/src/components/marginals/Navbar/AuthButton.jsx +++ /dev/null @@ -1,25 +0,0 @@ -import React, { useContext } from 'react'; -import { AuthContext } from '../../../utils/Auth'; -import Button from '../../shared/Button'; - -const AuthButton = ({ text, outline, paddingX, paddingY }) => { - const authContext = useContext(AuthContext); - const { login, logout, authenticated } = authContext; - - return ( -