Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.
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
3 changes: 2 additions & 1 deletion site/src/css/layout/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,15 @@
width: 100%;
height: auto;
display: flex;
justify-content: space-between;
margin-bottom: 40px;

@include mobile-view {
flex-direction: column;
}

.logo {
width: 75%;
width: 25%;
height: 54px;
background: no-repeat left url('@site/static/img/bw-horizontal.svg');

Expand Down
40 changes: 23 additions & 17 deletions site/src/theme/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,26 @@ function Footer() {
{
title: 'More',
items: [
{
label: 'Release Notes',
to: 'https://www.bandwidth.com/release-notes/'
}, {
label: 'Sandbox',
to: 'https://sandbox.bandwidth.com'
}, {
label: 'Status',
to: 'https://status.bandwidth.com/'
}, {
label: 'Support',
to: 'https://support.bandwidth.com'
}
]
{
label: 'Glossary',
to: 'https://www.bandwidth.com/glossary/'
}, {
label: 'Release Notes',
to: 'https://www.bandwidth.com/release-notes/'
}, {
label: 'Resources',
to: 'https://www.bandwidth.com/resources/'
}, {
label: 'Sandbox',
to: 'https://sandbox.bandwidth.com'
}, {
label: 'Service Status',
to: 'https://status.bandwidth.com/'
}, {
label: 'Support',
to: 'https://support.bandwidth.com'
}
]
},
{
title: 'Community',
Expand All @@ -90,7 +96,7 @@ function Footer() {
]
}
],
copyright: `Bandwidth.com CLEC, LLC is a wholly owned subsidiary of Bandwidth Inc. ©${new Date().getFullYear()}. Built with Docusaurus.`,
copyright: ` CLEC, LLC is a wholly owned subsidiary of Bandwidth Inc. ©${new Date().getFullYear()}. Built with Docusaurus.`,
};

const getInTouch = {
Expand All @@ -117,7 +123,7 @@ function Footer() {
<div className="content">

<div className="social-row">
<div className="logo"/>
<a href="https://www.bandwidth.com/" target="_blank" rel="external" className="logo"></a>
<div className="social-links" data-cy="socialLinks">
<a className="social-link" href="https://www.linkedin.com/company/bandwidth-inc" target="_blank" rel="noopener"><LinkedIn/></a>
<a className="social-link" href="https://twitter.com/bandwidth" target="_blank" rel="noopener"><Twitter/></a>
Expand All @@ -143,7 +149,7 @@ function Footer() {
</div>

</div>
<div className="copyright">{footer.copyright}</div>
<div className="copyright"><a href="https://www.bandwidth.com/">Bandwidth.com</a>{footer.copyright}</div>
</div>

</div>
Expand Down