Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active December 2, 2018 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save productioncoder/9ff6060f5466e357a0efdda9c9962425 to your computer and use it in GitHub Desktop.
Save productioncoder/9ff6060f5466e357a0efdda9c9962425 to your computer and use it in GitHub Desktop.
Youtube Sidebar Footer
import React from 'react';
import './SideBarFooter.scss'
export function SideBarFooter() {
return (
<React.Fragment>
<div className='footer-block'>
<div>About Press Copyright</div>
<div>Creators Advertise</div>
<div>Developers +MyTube</div>
<div>Legal</div>
</div>
<div className='footer-block'>
<div>Terms Privacy</div>
<div>Policy & Safety</div>
<div>Test new features</div>
</div>
<div className='footer-block'>
<div>All prices include VAT</div>
</div>
<div className='footer-block'>
<div>© Productioncoder.com - A Youtube clone for educational purposes under fair use.</div>
</div>
</React.Fragment>
);
}
.footer-block {
padding-bottom: 10px;
padding-left: 16px;
color: #918888;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment