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.

118 lines
5.0 KiB
Vue

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<style scoped>
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
* {
border: 0px black solid;
background-color: #ffe6e6;
}
.about-text {
padding-right: 50px;
padding-top: 40px;
font-family: 'Roboto Mono', monospace;
font-size: 15px;
padding-left: 20px;
}
a:hover {
color: hotpink;
text-decoration: none;
}
a {
color: gray;
}
.container_width {
max-width: 100%;
padding-left: 0px;
padding-right: 0px;
padding-top: 70px;
}
.title_story {
font-size: 80px;
font-family: 'Permanent Marker', cursive;
padding-left: 20px;
padding-top: 70px;
}
.author {
font-size: 20px;
font-family: 'Roboto Mono', monospace;
padding-left: 20px;
}
.small_icon {
max-width: 20%;
padding-top: 70px;
}
</style>
<template>
<b-container fluid class="p-0">
<MenuBar/>
<b-row>
<b-col md="8">
<p class="title_story">We're still eating</p>
<b-row>
<b-col md="6">
<p class="author">a note by Alice Strete</p>
</b-col>
</b-row>
</b-col>
<b-col md="1">
</b-col>
<b-col md="2" class="small_icon">
<a href="/"><b-img center class="img-fluid" alt="Responsive image" src="media/magiun_gimp.gif"> </b-img></a>
</b-col>
<b-col md="1">
</b-col>
</b-row>
<b-row class="about-text">
<b-col md="8">
<p>
On the 13th of March, 2020, I began my self-imposed, prolongued stay-at-home quarantine. In the outside world, supermarkets were being stripped of toilet paper, cleaning products, flour and milk, but people were still crowding bars and restaurants. My mood fluctuated between panic and boredom, accentuated by thoughts of not being able to visit my family, to walk outside without being freaked out by the proximity of people, or to stay sane indoors without being freaked out by the proximity of people. Alongside this, another kind of panic creeped in there were no eggs in the shops. What was I supposed to do without eggs? What else was next on the list of endangered essential foods? And how long will this last? </p>
<p> Even though everyones experience differs greatly, food is still a central element during this lockdown. Since the pandemic measures have started, things have normalized a bit in the grocery department. Still, in the almost 7 weeks since, Ive felt my previously unyielding enthusiasm towards cooking and eating starting to falter. Im not a meal planner. I do my grocery shopping on the spur of the moment, based on mood swings, a random page I opened the cookbook at, a video I saw on YouTube, a memory I have from childhood. I shop for one or two meals, not for an entire week of them. (I now know I spent way too much money this way, but bear with me.) So when going to the supermarket became something to dread, I collapsed. I had no desire to cook with what I already had in my cupboards. I had no intention to use the dozen cans I managed to hoard days before everyone else started hoarding. A missing ingredient became a reason to give up cooking a meal altogether, rather than head over to the nearest shop to satisfy my cravings. But still, I ate it all and it didnt bring me much joy. </p>
<p>The anxiety of going shopping has become so great, that I never even bring my wallet when going for a walk, knowing theres no chance Ill spontaneously pop in a shop for a treat. Of course, Im incredibly lucky to even have the option of going outside, or going shopping, or ordering groceries online. And Im also happy to notice some positive change in my habits saving more money on food because of no impulse-buying, reusing leftovers more creatively, throwing out significantly less food, baking more, getting more excited for that one special holiday brunch I made for Easter.</p>
<p>Asking friends and family confirmed some of my thoughts I was not alone in feeling differently about food, or changing the way I do things. But not everyone had gone in the same direction. The non-bread bakers started baking bread, the rarely-cooks started documenting their newly discovered interest in cooking, the meal-planners stopped making plans, the improvisers went on planned meals, the social-eaters started seeking more solitary meals (me), the every-day-cooks started dreading meal times (also me).</p>
<p>Among plenty news stories on the impact of COVID-19 on food security, the food industry, HORECA, or food logistics, I wanted to learn more about changes that happened on an intimate level, inside homes, fridges, pantries, and on plates. The result of my open call materialized itself in musings over cultural eating habits, declarations of gratitude, organized meal plans, recipes, improvisations, family conversations, and lots of photos. I hope you enjoy them as much as I do.</p>
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'EditorNote',
components: {
MenuBar
}
}
</script>