-
Notifications
You must be signed in to change notification settings - Fork 41
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
1 parent
889a898
commit 96c95fe
Showing
4 changed files
with
59 additions
and
4 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,46 @@ | ||
import ExternalLink from "@/components/external_link"; | ||
import { Button } from "@/components/ui/button"; | ||
|
||
import githubImage from "@/images/brands/github.svg"; | ||
|
||
function Footer() { | ||
return ( | ||
<footer className="bg-background border-t"> | ||
<div className="container mx-auto py-4 px-4 sm:px-6 lg:px-8"> | ||
<div className="flex flex-col sm:flex-row justify-between items-start sm:items-center space-y-4 sm:space-y-0"> | ||
<div className="flex flex-row items-center space-x-2"> | ||
<Button variant="ghost" size="icon" asChild className="p-0 h-auto"> | ||
<a | ||
href="https://github.com/CalvinWalzel/ruby-companies" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<img src={githubImage} alt="GitHub" className="w-5 h-5 m-0" /> | ||
<span className="sr-only">GitHub repository</span> | ||
</a> | ||
</Button> | ||
<div className="text-sm text-muted-foreground"> | ||
created by Calvin Walzel & Gitta van der Pol | ||
</div> | ||
</div> | ||
<div className="flex items-center space-x-4"> | ||
<span className="text-sm text-muted-foreground flex items-center"> | ||
sponsored by{" "} | ||
<ExternalLink | ||
href="https://avohq.io" | ||
className="ml-1" | ||
icon={null} | ||
> | ||
AvoHQ | ||
</ExternalLink> | ||
</span> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
} | ||
|
||
Footer.displayName = "layouts/application/footer"; | ||
|
||
export default Footer; |