Add buzzwords link
This commit is contained in:
parent
fe7873b78c
commit
6d8e944b01
@ -6,11 +6,21 @@ const getButtonClasses = (isClient) =>
|
|||||||
classnames(
|
classnames(
|
||||||
"z-20 rounded-md text-md inline-block px-2 py-1 mt-1 md:py-2 md:px-3 md:my-1 mr-2 text-md hover:underline",
|
"z-20 rounded-md text-md inline-block px-2 py-1 mt-1 md:py-2 md:px-3 md:my-1 mr-2 text-md hover:underline",
|
||||||
isClient
|
isClient
|
||||||
? 'text-muted-light bg-muted-dark hover:bg-muted blurred-or-opaque-bg-2'
|
? "text-muted-light bg-muted-dark hover:bg-muted blurred-or-opaque-bg-2"
|
||||||
: 'text-gray-200'
|
: "text-gray-200"
|
||||||
);
|
);
|
||||||
|
|
||||||
const ActionButtons = ({ isClient, image, shuffleImage }) => (
|
const ActionButtons = ({ isClient, image, shuffleImage }) => (
|
||||||
|
<div className="flex flex-col">
|
||||||
|
<div className="p-4 m-4 bg-buzzwordsPrimary bg-opacity-50 rounded-xl flex flex-col text-center">
|
||||||
|
<h3>Try the game I'm making!</h3>
|
||||||
|
<a
|
||||||
|
className={getButtonClasses(isClient)}
|
||||||
|
href="https://buzzwords.gg"
|
||||||
|
>
|
||||||
|
Buzzwords
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
<div className="flex mx-6 mb-6">
|
<div className="flex mx-6 mb-6">
|
||||||
<Link
|
<Link
|
||||||
className={getButtonClasses(isClient, "muted")}
|
className={getButtonClasses(isClient, "muted")}
|
||||||
@ -43,6 +53,7 @@ const ActionButtons = ({ isClient, image, shuffleImage }) => (
|
|||||||
Photography Gallery
|
Photography Gallery
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
export default ActionButtons;
|
export default ActionButtons;
|
||||||
|
@ -39,6 +39,7 @@ module.exports = {
|
|||||||
'huge-2': 'max(7.8vw, 120px)'
|
'huge-2': 'max(7.8vw, 120px)'
|
||||||
},
|
},
|
||||||
colors: {
|
colors: {
|
||||||
|
buzzwordsPrimary: '#F6C54B',
|
||||||
vibrant: {
|
vibrant: {
|
||||||
DEFAULT: ({ opacityVariable, opacityValue }) => {
|
DEFAULT: ({ opacityVariable, opacityValue }) => {
|
||||||
if (opacityValue !== undefined) {
|
if (opacityValue !== undefined) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user