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.

131 lines
3.9 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>
.about-text {
font-size: 18px;
color: #212322;
text-align: justify;
padding-top: 100px;
padding-bottom: 100px;
padding-left: 20px;
}
h3 {
font-family: "Open Sans", sans-serif;
font-size: 30px;
font-weight: bold;
}
p {
font-family: "Inconsolata", monospace;
}
a:hover {
color: hotpink;
text-decoration: none;
}
a {
color: gray;
}
.cv_sub {
font-size: 24px;
}
</style>
<template>
<div>
<MenuBar/>
<b-row class="about-text">
<b-col md="10">
<p>Alice Strete (1991) is a Romanian media artist/researcher based in Rotterdam. She is a board member of <a href="http://varia.zone/">Varia</a> and a board member of <a href="https://biobulkbende.org/">BioBulkBende</a> food co-operative.</p>
<p>For more information/questions/collaboration enquiries, drop her an <a href="mailto:alice.strt@gmail.com">email</a>.
You can also find her on <a href="https://www.instagram.com/alicestrt/" target="_blank">Instagram</a> and <a href="https://post.lurk.org/@alcstrt" target="_blank">Mastodon</a>.
</p>
<p class="cv_sub">Art and Research </p>
<p>2020, A Nourishing Network, collaboration with servus.at<br>
2020, Hybrid Publishing, hybrid publication project commissioned by the WDKA, Rotterdam <br>
2020, Magiun Magazine, self-publishing project <br>
2020, Intersectional Search in Queer and Trans Archives, Feminist Search Tool project <br>
2020, Groningen Timeline Gallery Exhibition, Book Launch & Review, Group exhibition, Rumour Camp, The Happiness Project<br>
2020, Amsterdam
Repository of Feminist Search Strategies
Workshop with Hackers&Designers, Read-in <br>
2019, Rotterdam Piet Zwart Institute, Upsetting Settings Graduation Show
Group exhibition, Is it time to eat, or is there no more time to eat?<br>
2019, Paris Gaîté Lyrique, Grrrls Tech Zine Fair
Participated with over/under, Techno/Cyber/Xeno-Feminism <br>
2018, Groningen
SIGN, Spread Zinefest
Zine Machines Workshop<br>
2018, Groningen
Timeline Gallery Project
Rumour Camp Project<br>
2018, Groningen
Timeline Gallery Project
The Happiness Project<br>
2018, Rotterdam
Piet Zwart Institute, Interfacing the Law
Group Show, XPPL project presented at Leeszaal West<br>
2018, Rotterdam
Piet Zwart Institute, OuNuPo
Group show, over/under, carlandre presented at Varia, WORM
Work<br>
2018, Rotterdam TENT Gallery, Rotterdam Cultural Histories
G roup show/exhibition, Temporary Autonomous Bureau</p>
<p class="cv_sub">Publications</p>
<p>2020, Rotterdam, Magiun Magazine <br>
2020, UK Code::Art Journal<br>
2019, Rotterdam Upsetting Settings Catalogue<br>
2019, Rotterdam Upsetting Settings, Collected Works<br>
2019, Rotterdam Over/Under zine<br>
2018, Rotterdam Techno/Cyber/Xeno-Feminism Reader<br>
2017, Rotterdam A Bed, a Chair and a Table</p>
<p class="cv_sub">Work</p>
<p>2019 present, Willem de Kooning Academy, Tutor/Researcher
Developer of publishing platform Beyond Social within the
social practices minor, workshop facilitator, substitute tutor <br>
2016 present,
Fairplanet.org, Social Media Manager for a non-profit independent
solution journalism platform focused on human rights and the environment.
</p>
<p class="cv_sub">Education</p>
<p>2017 2019, Rotterdam
Piet Zwart Institute, Willem de Kooning Academy, MA
Master of Arts in Fine Art and Design: Experimental Publishing <br>
2013 2014, Dublin
Dublin City University
Erasmus Semester Abroad, Communication Studies <br>
2011-2014, Cluj-Napoca
Babes-Bolyai University, Bachelor
Faculty of Political, Administrative and Communication Studies</p>
<p class="cv_sub">Awards</p>
<p>2020, Temporary Work Contribution Production, Presentation and Research (PPR) from CBK Rotterdam
<br>2018,
Van Beek-Donner Stichting
Awarded the Grada van Beek-Donner Scholarship</p>
</b-col>
</b-row>
</div>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'AboutPage',
components: {
MenuBar
}
}
</script>