I'm looking to add an image next to my text in Vue using Buefy. Take a look at the code I have so far, can someone offer some guidance?
<template>
<section class="hero is-link is-fullheight-with-navbar">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="columns is-vcentered is-variable">
<div class="column">
<p class="title">
Let your creativity go wild
</p>
<p class="subtitle">
Kaplash is your go-to tool to help make your coding and blocky dreams come true.
</p>
<b-image
src="https://media.discordapp.net/attachments/999131353033482322/1017389226138009650/unknown.png"
ratio="16by9"
@load="onLoad1"
></b-image>
</div>
</div>
</div>
</div>
</section>
</template