-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More DaisyUI and other improvements (#46)
* Add idea for build id/version * Add a proper footer * Move more things to daisyUI and make terminal look like an actual terminal * Remove conflicting classes * Temporary fix where mobile layout would get garbled * Improve this screen a bit * Change extension and remove copypasta mistake
- Loading branch information
1 parent
2821b86
commit 2b4d6e2
Showing
7 changed files
with
57 additions
and
43 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,21 @@ | ||
import { faGithubAlt } from "@fortawesome/free-brands-svg-icons"; | ||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; | ||
|
||
export const Footer = () => { | ||
return ( | ||
<footer className="footer items-center bg-neutral p-4 text-neutral-content"> | ||
<aside className="grid-flow-row items-center"> | ||
<p>Mayhem Hub - {new Date().getFullYear()}</p> | ||
<small>Version: {process.env.BUILD_ID}</small> | ||
</aside> | ||
<nav className="grid-flow-col gap-4 md:place-self-center md:justify-self-end"> | ||
<a href="https://github.com/portapack-mayhem/MayhemHub" target="_blank"> | ||
<FontAwesomeIcon | ||
icon={faGithubAlt} | ||
className="mr-2 max-w-6 text-2xl text-white" | ||
/> | ||
</a> | ||
</nav> | ||
</footer> | ||
); | ||
}; |
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