-
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
1 parent
9e21fd2
commit 5277039
Showing
7 changed files
with
1,399 additions
and
1,365 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,18 @@ | ||
import React from "react"; | ||
|
||
const Link = ({ href, title, className }) => ( | ||
<a className={`${ className } text-zinc-100 hover:text-zinc-800 transition ease-in-out`} href={ href } target="_blank" rel="noreferrer"> | ||
{ title } | ||
</a> | ||
) | ||
|
||
|
||
export function Banner() { | ||
return ( | ||
<div className="flex flex-col items-center w-full p-2 text-lg font-bold text-zinc-800 bg-amber-500"> | ||
<div className="flex"> | ||
We're moving! Check out the new look out at <Link className="underline" href="https://quibbble.com" title="quibbble.com" />. | ||
</div> | ||
</div> | ||
) | ||
} |
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