You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
791 B
Vue

<style scoped>
* {
border: 0px black solid;
background-color: #ffe6e6;
}
a:hover {
color: hotpink;
text-decoration: none;
}
a {
color: gray;
}
</style>
<template>
<b-container fluid>
<MenuBar/>
<b-row>
<b-col md="6">
<p>Leek pilaf</p>
</b-col>
</b-row>
<b-row>
<b-col md="6">
<b-img class="img-fluid" src="media/leek/leek-pilaf-1.JPG"></b-img>
</b-col>
<b-col md="6">
<b-img class="img-fluid" src="media/leek/leek-pilaf-2.JPG"></b-img>
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'leekpilaf',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>