diff --git a/website/pages/en/index.js b/website/pages/en/index.js index b69c76c80..59afb0f6d 100644 --- a/website/pages/en/index.js +++ b/website/pages/en/index.js @@ -74,6 +74,20 @@ class HomeSplash extends React.Component { } } +function SocialBanner() { + return ( +
+
+ Support Ukraine πŸ‡ΊπŸ‡¦{' '} + + Help Provide Humanitarian Aid to Ukraine + + . +
+
+ ); +} + class Index extends React.Component { render() { const {config: siteConfig, language = ''} = this.props; @@ -212,6 +226,7 @@ loss_chamfer, _ = chamfer_distance(sample_sphere, sample_test) return (
+
diff --git a/website/static/css/custom.css b/website/static/css/custom.css index 691ec0796..3aed147d3 100644 --- a/website/static/css/custom.css +++ b/website/static/css/custom.css @@ -344,3 +344,17 @@ p a:hover { @media only screen and (min-width: 1500px) { } + +/* Social Banner */ +.socialBanner { + font-weight: bold; + font-size: 20px; + padding: 20px; + max-width: 768px; + margin: 0 auto; + text-align: center; +} + +.socialBanner a { + text-decoration: underline; +}