-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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
Binary file not shown.
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,40 @@ | ||
import React from "react"; | ||
import { BsWindows } from "react-icons/bs"; | ||
import { FaApple, FaLinux } from "react-icons/fa"; | ||
|
||
export const GuckerGrid = ({ children }) => { | ||
return ( | ||
<div className="grid grid-cols-3 md:grid-cols-3 gap-4 mb-3 "> | ||
<a | ||
target="_blank" | ||
className="p-2 bg-gray-500 rounded px-3 py-2 rounded-lg text-white cursor-not-allowed hover:bg-gray-500 hover:text-white my-auto flex flex-col items-center my-auto " | ||
> | ||
<div className="my-auto mr-2"> | ||
<FaLinux size={"3em"} /> | ||
</div>{" "} | ||
<div className="my-auto">Linux</div> | ||
</a> | ||
<a | ||
href={ | ||
"https://github.com/arkitektio-apps/gucker/releases/latest/download/GuckerApp.zip" | ||
} | ||
target="_blank" | ||
className="bg-primary-300 rounded px-3 py-2 rounded-lg text-white cursor-pointer hover:bg-primary-500 hover:text-white flex flex-col items-center my-auto" | ||
> | ||
<div className="my-auto mr-2"> | ||
<BsWindows size={"3em"} /> | ||
</div>{" "} | ||
<div className="my-auto">Windows</div> | ||
</a> | ||
<a | ||
target="_blank" | ||
className="bg-gray-500 rounded px-3 py-2 rounded-lg text-white cursor-not-allowed hover:bg-gray-500 hover:text-white my-auto flex flex-col items-center my-auto" | ||
> | ||
<div className="my-auto mr-2"> | ||
<FaApple size={"3em"} /> | ||
</div>{" "} | ||
<div className="my-auto">Mac</div> | ||
</a> | ||
</div> | ||
); | ||
}; |