Skip to content

Commit

Permalink
Merge pull request #55 from icssc/feedback-form
Browse files Browse the repository at this point in the history
Create Feedback Form Button
  • Loading branch information
NwinNwin authored Apr 15, 2024
2 parents e7ac962 + 51d6e14 commit cee5c38
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/components/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ import ZotNFoundLogoText from "./ZotNFoundLogoText";
import DateRangeFilter from "./DateRangeFilter";
import ListItemButton from "./ListItemButton";

import { MdAssignment } from "react-icons/md";

export default function Home() {
const [search, setSearch] = useState("");
const [data, setData] = useState([]);
Expand Down Expand Up @@ -345,6 +347,15 @@ export default function Home() {
mr={7}
gap={{ base: 3, md: 5 }}
>
<Button
leftIcon={<MdAssignment />}
colorScheme = 'blue'
onClick={() => {
window.open('https://forms.gle/Uud594N7QE6VbiDY6', '_blank');
}}
>
Feedback
</Button>
{user ? (
<>
<Flex
Expand Down

0 comments on commit cee5c38

Please sign in to comment.