diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 8dbe145..0345064 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,33 +1,32 @@ Please include a summary of the changes and the related issue. Please also include relevant motivation and context. List any dependencies that are required for this change. - Fixes # (issue) - ## Type of change -Please give a X on it which is applicable +Please mark with an X the type that applies: - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) -- [ ] Refactor Code -- [ ] A documentation update -- [ ] Others(mentioned in the issue number) +- [ ] Refactor code +- [ ] Documentation update +- [ ] Other (mentioned in the issue number) # How Has This Been Tested? -Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration +Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce them. Please also list any relevant details for your test configuration. + +**_Test A: Describe here_** -**_Test A Describe here_** +**_Test B: Describe here (if required)_** -**_Test B Describe here (if Requred)_** +# Screenshots and Videos -# Screenshorts and Vedios: +Please provide screenshots and videos of the changes you made. -give screenshorts and vedio of the changes you made +# Checklist -# Checklist: -give a X on it which is applicable +Please mark with an X the items that apply: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code diff --git a/src/components/Navbar.jsx b/src/components/Navbar.jsx index bb97a9f..1e72bcc 100644 --- a/src/components/Navbar.jsx +++ b/src/components/Navbar.jsx @@ -5,6 +5,7 @@ import { motion, AnimatePresence, useScroll } from "framer-motion"; import { IoClose } from "react-icons/io5"; import { GiHamburgerMenu } from "react-icons/gi"; import { ThemeContext } from '../themeContext'; + const Navbar = () => { const { theme, toggleTheme } = useContext(ThemeContext); const [isOpen, setIsOpen] = useState(false); @@ -16,29 +17,22 @@ const Navbar = () => { return ( <> -