Skip to content

Commit 2607b68

Browse files
committed
update to add link to Superface GPT
1 parent a61c742 commit 2607b68

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

docusaurus.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ module.exports = {
4444
label: 'Blog',
4545
position: 'left'
4646
},
47+
{
48+
label: 'Try Superface in ChatGPT',
49+
href: 'https://chat.openai.com/g/g-XElhtlxOR-superface',
50+
position: 'right',
51+
className: 'demo-button-chatgpt', 'aria-label': 'Book a demo'
52+
},
4753
{
4854
label: 'Connect GPTs to APIs',
4955
href: '/gpt',

src/css/custom.css

+17-1
Original file line numberDiff line numberDiff line change
@@ -266,12 +266,28 @@ aside.docSidebarContainer_node_modules-\@docusaurus-theme-classic-lib-next-theme
266266
margin-right: 1rem;
267267
font-weight: 600;
268268
line-height: 1.18;
269+
text-decoration: none;
269270
}
270271

271-
.demo-button:hover{
272+
.demo-button:hover, .demo-button-chatgpt:hover {
272273
cursor:pointer;
273274
background-color: #04C59F;
274275
color: #000;
276+
text-decoration: none;;
277+
}
278+
279+
.demo-button-chatgpt {
280+
background-color: var(--button-green);
281+
padding: 0.6rem 1.75rem 0.6rem 1.75rem;
282+
border-radius: 10px;
283+
color: #000;
284+
-webkit-transition: background-color 0.5s ease-out;
285+
-moz-transition: background-color 0.5s ease-out;
286+
-o-transition: background-color 0.5s ease-out;
287+
transition: background-color 0.5s ease-out;
288+
margin-right: 1rem;
289+
font-weight: 600;
290+
line-height: 1.18;
275291
}
276292

277293
/* .row .col a {

0 commit comments

Comments
 (0)