import React, { Component } from "react"; import {createGlobalStyle} from 'styled-components'; import {Container, Row, Col} from "react-bootstrap" import './assets/Sponsors.scss' const GlobalStyle = createGlobalStyle` html { height: 100% } body { background-color: #293241; font-family: Poppins, sans-serif; height: 100%; margin: 0; color: #555; } h2 { color: #fff; } `; class Sponsors extends Component { render() { return ( <>

Our amazing sponsors help make Potentia Robotics' projects possible!

Contact us to learn more about sponsorship.

Gold

Donation amount: $1000+

Perks: Silver + logo on Olympian

Silver

Donation amount: $500-$999

Perks: Bronze + logo on all Potentia merchandise

Bronze

Donation amount: $100-$499

Perks: logo on website + recognition on social media

); } } export default Sponsors;