-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from mrkthmpsn/july-24-update
July '24 update
- Loading branch information
Showing
4 changed files
with
65 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { BeakerIcon } from "@heroicons/react/24/solid"; | ||
import { | ||
InformationCircleIcon, | ||
PaperAirplaneIcon, | ||
} from "@heroicons/react/24/outline"; | ||
|
||
const NavIconsGroup = () => { | ||
|
||
|
||
return (<> | ||
<div className="flex justify-center items-center"> | ||
<a href="/about" className="space-x-2"> | ||
<InformationCircleIcon className="h-4 w-4 md:h-6 md:w-6" /> | ||
<p className="mb-0">About</p> | ||
<InformationCircleIcon className="h-4 w-4 md:h-6 md:w-6" /> | ||
</a> | ||
</div> | ||
<div className="flex justify-center items-center"> | ||
<a href="/projects" className="space-x-2"> | ||
<BeakerIcon className="h-4 w-4 md:h-6 md:w-6" /> | ||
<p className="mb-0">Projects</p> | ||
<BeakerIcon className="h-4 w-4 md:h-6 md:w-6" /> | ||
</a> | ||
</div> | ||
<div className="flex justify-center items-center"> | ||
<a href="/contact" className="space-x-2"> | ||
<PaperAirplaneIcon className="h-4 w-4 md:h-6 md:w-6" /> | ||
<p className="mb-0">Contact</p> | ||
<PaperAirplaneIcon className="h-4 w-4 md:h-6 md:w-6" /> | ||
</a> | ||
</div> | ||
</> | ||
) | ||
} | ||
|
||
export default NavIconsGroup |