Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
symbolpunk committed Sep 14, 2023
1 parent 6043e16 commit 855c2e5
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 13 deletions.
69 changes: 56 additions & 13 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,20 +132,28 @@ const config = {
footer: {
style: 'dark',
links: [
{},
{
title: 'Info',
items: [
{
label: 'Offchain Labs',
to: 'https://offchainlabs.com/',
},
{
label: 'Arbitrum.io',
to: 'https://arbitrum.io/',
},
{
label: 'Nova.arbitrum.io',
to: 'https://nova.arbitrum.io/',
label: 'Arbitrum Rollup',
to: 'https://arbitrum.io/rollup',
},
{
label: 'Arbitrum AnyTrust',
to: 'https://arbitrum.io/anytrust',
},
{
label: 'Arbitrum Orbit',
to: 'https://arbitrum.io/orbit',
},
{
label: 'Arbitrum Stylus',
to: 'https://arbitrum.io/stylus',
},
{
label: 'Nitro whitepaper',
Expand All @@ -154,28 +162,63 @@ const config = {
],
},
{
title: 'Community',
items: [
{
label: 'Network status',
to: 'https://status.arbitrum.io/',
},
{
label: 'Portal',
to: 'https://portal.arbitrum.io/',
},
{
label: 'Bridge',
to: 'https://bridge.arbitrum.io/',
},
{
label: 'Community',
to: 'https://arbitrum.io/community',
},
{
label: 'Careers',
to: 'https://offchainlabs.com/careers/',
},
{
label: 'Support',
to: 'https://arbitrumfoundation.zendesk.com/hc/en-us/requests/new?ticket_form_id=18163883015323',
},
],
},
{
items: [
{
label: 'Discord',
href: 'https://discord.gg/ZpZuw7p',
to: 'https://discord.gg/ZpZuw7p',
},
{
label: 'Twitter',
href: 'https://twitter.com/ArbitrumDevs',
to: 'https://twitter.com/ArbitrumDevs',
},
{
label: 'Youtube',
to: 'https://www.youtube.com/@Arbitrum',
},
{
label: 'Research forum',
href: 'https://research.arbitrum.io/',
to: 'https://research.arbitrum.io/',
},
{
label: 'Medium Blog',
href: 'https://medium.com/offchainlabs',
to: 'https://medium.com/offchainlabs',
},
{
label: 'Governance docs',
to: 'https://medium.com/offchainlabs',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Offchain Labs, Built with Docusaurus.`,
copyright: ${new Date().getFullYear()} Offchain Labs`,
},
prism: {
additionalLanguages: ['solidity', 'rust'],
Expand Down
2 changes: 2 additions & 0 deletions website/src/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@
@use './partials/_banner.scss';
@use './partials/_responsive.scss';
@use './partials/_sidebar.scss';
@use './partials/_footer.scss';
@use './partials/_navbar.scss';
7 changes: 7 additions & 0 deletions website/src/css/partials/_footer.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@use './_fonts.scss' as *;

footer.footer {
background-color: unset;
font-size: 12px;
border-top: 1px solid rgba(100, 100, 100, 0.4);
}
1 change: 1 addition & 0 deletions website/src/css/partials/_navbar.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@use './_fonts.scss' as *;
1 change: 1 addition & 0 deletions website/src/css/partials/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
--ifm-color-primary-lighter: #357899;
--ifm-color-primary-lightest: #3c85ad;
--ifm-color-content: #000;
--ifm-footer-link-color: black;
--ifm-link-color: #007bdd;
--ifm-code-font-size: 95%;
--ifm-global-radius: 2px;
Expand Down

0 comments on commit 855c2e5

Please sign in to comment.