Skip to content

Commit

Permalink
update to add link to Superface GPT
Browse files Browse the repository at this point in the history
  • Loading branch information
martyndavies committed Feb 21, 2024
1 parent a61c742 commit 2607b68
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ module.exports = {
label: 'Blog',
position: 'left'
},
{
label: 'Try Superface in ChatGPT',
href: 'https://chat.openai.com/g/g-XElhtlxOR-superface',
position: 'right',
className: 'demo-button-chatgpt', 'aria-label': 'Book a demo'
},
{
label: 'Connect GPTs to APIs',
href: '/gpt',
Expand Down
18 changes: 17 additions & 1 deletion src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -266,12 +266,28 @@ aside.docSidebarContainer_node_modules-\@docusaurus-theme-classic-lib-next-theme
margin-right: 1rem;
font-weight: 600;
line-height: 1.18;
text-decoration: none;
}

.demo-button:hover{
.demo-button:hover, .demo-button-chatgpt:hover {
cursor:pointer;
background-color: #04C59F;
color: #000;
text-decoration: none;;
}

.demo-button-chatgpt {
background-color: var(--button-green);
padding: 0.6rem 1.75rem 0.6rem 1.75rem;
border-radius: 10px;
color: #000;
-webkit-transition: background-color 0.5s ease-out;
-moz-transition: background-color 0.5s ease-out;
-o-transition: background-color 0.5s ease-out;
transition: background-color 0.5s ease-out;
margin-right: 1rem;
font-weight: 600;
line-height: 1.18;
}

/* .row .col a {
Expand Down

0 comments on commit 2607b68

Please sign in to comment.