Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Infobar content update #242

Merged
merged 1 commit into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const config = {
trackingID: "GTM-NGX36B79",
anonymizeIP: true,
},

googleTagManager: {
containerId: "GTM-NGX36B79",
},
Expand Down Expand Up @@ -215,9 +215,10 @@ const config = {
},
announcementBar: {
id: "mainnet",
// content:
// 'Cartesi Rollups is Mainnet Ready! {{balance}} in {{symbol}} is up for grabs... if you can <a href="https://honeypot.cartesi.io/" target="_blank" rel="noopener noreferrer">hack Cartesi Rollups</a>.',
content:
'Cartesi Rollups is Mainnet Ready! {{balance}} in {{symbol}} is up for grabs... if you can <a href="https://honeypot.cartesi.io/" target="_blank" rel="noopener noreferrer">hack Cartesi Rollups</a>.',

'Build your most ambitious dApp yet with Cartesi - grant applications open! <a href="https://bit.ly/49EE31V" target="_blank" rel="noopener noreferrer">APPLY NOW</a>',
backgroundColor: "rgba(0, 0, 0, 0.7)",
textColor: "#FFFFFF",
isCloseable: true,
Expand Down
1 change: 1 addition & 0 deletions src/theme/AnnouncementBar/Content/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export default function AnnouncementBarContent(props) {
// Update the content with the fetched values
useEffect(() => {
if (!contentVars) {
setLoaded(true);
return;
}

Expand Down
Loading