Skip to content

Commit

Permalink
feat: added buy-me-a-coffee link in header
Browse files Browse the repository at this point in the history
  • Loading branch information
ArslanYM committed Sep 20, 2023
1 parent 7036a97 commit 5af0079
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion web/src/layouts/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import React, { useState } from 'react';
import { Link, useLocation } from 'react-router-dom';
import { VscGithubAlt, VscChromeClose } from 'react-icons/vsc';
import { AiOutlineCoffee } from 'react-icons/ai'

import logo from '../assets/hive.svg';

Expand Down Expand Up @@ -89,10 +90,20 @@ const Header = () => {
aria-label="github-link"
target="_blank"
rel="noreferrer"
className="space-x-2 flex items-center"
className="mr-3 space-x-2 flex items-center"
>
<VscGithubAlt className="p-0.5 hover:text-3xl text-2xl flex rounded-md duration-300 text-white" />
</a>
<a
href="https://www.buymeacoffee.com/arslanymalik"
aria-label="support-link"
target="_blank"
rel="noreferrer"
className="space-x-2 flex items-center"
>
<AiOutlineCoffee className="p-0.5 hover:text-3xl text-2xl flex rounded-md duration-300 text-white" />
</a>

</div>
<div
className={` ${
Expand Down

0 comments on commit 5af0079

Please sign in to comment.