<template>
<!-- Social Buttons -->
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(59, 89, 152);">
<MDBIcon iconStyle="fab" icon="facebook-f"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(85, 172, 238);">
<MDBIcon iconStyle="fab" icon="twitter"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(221, 75, 57);">
<MDBIcon iconStyle="fab" icon="google"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(172, 43, 172);">
<MDBIcon iconStyle="fab" icon="instagram"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(0, 130, 202);">
<MDBIcon iconStyle="fab" icon="linkedin-in"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(198, 17, 24);">
<MDBIcon iconStyle="fab" icon="pinterest"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(76, 117, 163);">
<MDBIcon iconStyle="fab" icon="vk"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(255, 172, 68);">
<MDBIcon iconStyle="fab" icon="stack-overflow"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(237, 48, 47);">
<MDBIcon iconStyle="fab" icon="youtube"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(72, 20, 73);">
<MDBIcon iconStyle="fab" icon="slack-hash"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(51, 51, 51);">
<MDBIcon iconStyle="fab" icon="github"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(236, 74, 137);">
<MDBIcon iconStyle="fab" icon="dribbble"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(255, 69, 0);">
<MDBIcon iconStyle="fab" icon="reddit-alien"></MDBIcon>
</MDBBtn>
<MDBBtn tag="a" color="primary" href="#!" style="background-color: rgb(37, 211, 102);">
<MDBIcon iconStyle="fab" icon="whatsapp"></MDBIcon>
</MDBBtn>
</template>
<script>
import {
MDBBtn,
MDBIcon,
MDBBadge
} from "mdb-vue-ui-kit";
export default {
name: "App",
components: {
MDBBtn,
MDBIcon,
MDBBadge
}
};
</script>