From 90250b370d53697c3eceec58e9566b524898188f Mon Sep 17 00:00:00 2001 From: alicestrt Date: Tue, 20 Sep 2022 16:54:41 +0200 Subject: [PATCH] added 3 new projects --- src/components/ATNOFSPage.vue | 101 +++++++++++++++++++++++++++ src/components/AmroTimes.vue | 107 +++++++++++++++++++++++++++++ src/components/Magiun2.vue | 2 +- src/components/Magiun3.vue | 107 +++++++++++++++++++++++++++++ src/components/ReadingFoodPage.vue | 2 +- src/components/SplashPage.vue | 49 ++++++++++--- src/main.js | 9 ++- 7 files changed, 363 insertions(+), 14 deletions(-) create mode 100644 src/components/ATNOFSPage.vue create mode 100644 src/components/AmroTimes.vue create mode 100644 src/components/Magiun3.vue diff --git a/src/components/ATNOFSPage.vue b/src/components/ATNOFSPage.vue new file mode 100644 index 0000000..3c7ea26 --- /dev/null +++ b/src/components/ATNOFSPage.vue @@ -0,0 +1,101 @@ + + + + + diff --git a/src/components/AmroTimes.vue b/src/components/AmroTimes.vue new file mode 100644 index 0000000..1b353ba --- /dev/null +++ b/src/components/AmroTimes.vue @@ -0,0 +1,107 @@ + + + + + diff --git a/src/components/Magiun2.vue b/src/components/Magiun2.vue index 7b197ee..3f81a20 100644 --- a/src/components/Magiun2.vue +++ b/src/components/Magiun2.vue @@ -66,7 +66,7 @@ a {

Magiun is a magazine about everyday food. It publishes stories, poems, essays, recipes, photos and illustrations.

- The second issue is about adapting - as a coping mechanism, a way of learning or a creative way of moving forward. The contributions were sent in early 2021. The illustration on the cover shows one way of adapting, regrowing and coping with anxiety, by planting the ends of spring onions in an old can of olives to have a steady supply of greens. It's based on true facts.

+ The second issue is about adapting - as a coping mechanism, a way of learning or a creative way of moving forward. The contributions were sent in early 2021. The illustration on the cover shows one way of adapting, regrowing and coping with anxiety, by planting the ends of spring onions in an old can of olives to have a steady supply of greens. It's based on true facts.

The print publication was developed in collaboration with Simon Browne and printed by Printroom Rotterdam.

diff --git a/src/components/Magiun3.vue b/src/components/Magiun3.vue new file mode 100644 index 0000000..c307df0 --- /dev/null +++ b/src/components/Magiun3.vue @@ -0,0 +1,107 @@ + + + + + diff --git a/src/components/ReadingFoodPage.vue b/src/components/ReadingFoodPage.vue index f9a18da..ccfdbce 100644 --- a/src/components/ReadingFoodPage.vue +++ b/src/components/ReadingFoodPage.vue @@ -47,7 +47,7 @@ a { -

Releading Food

+

Reading Food

diff --git a/src/components/SplashPage.vue b/src/components/SplashPage.vue index f685817..24ba4e7 100644 --- a/src/components/SplashPage.vue +++ b/src/components/SplashPage.vue @@ -118,6 +118,10 @@ a { + +

ATNOFS

+ +

Relearn 2021

@@ -132,12 +136,13 @@ a {
+ +
+

XPPL

-
-

Temporary Autonomous Bureau

@@ -156,6 +161,10 @@ a {
+ +

Magiun #3

+ +

Magiun #2

@@ -168,10 +177,7 @@ a {

Upsetting Settings, Collected Works

- -

Upsetting Settings Catalogue

- -
+
@@ -183,6 +189,10 @@ a { + +

Upsetting Settings Catalogue

+ +

Techno/Cyber/Xeno-Feminism

@@ -195,6 +205,17 @@ a {

Code::art Journal

+ +
+
+ +
+ + + + + +

A Bed, a Chair and a Table

@@ -240,6 +261,10 @@ a {
+ +

AMRO Times

+ +

Reading Food

@@ -252,10 +277,14 @@ a {

Unpacking Gender Roles

- -

Repository of Feminist Search Strategies

- -
+ + +
+ + +

Repository of Feminist Search Strategies

+ +
diff --git a/src/main.js b/src/main.js index abb0b3d..8958e6e 100644 --- a/src/main.js +++ b/src/main.js @@ -49,6 +49,9 @@ import Magiun2 from './components/Magiun2' import RORPage from './components/RORPage' import RelearnPage from './components/RelearnPage' import ReadingFoodPage from './components/ReadingFoodPage' +import Magiun3 from './components/Magiun3' +import AmroTimes from './components/AmroTimes' +import ATNOFSPage from './components/ATNOFSPage' Vue.config.productionTip = false @@ -85,8 +88,10 @@ const router = new VueRouter({ { path: '/magiun2', component: Magiun2 }, { path: '/ror', component: RORPage }, { path: '/relearn', component: RelearnPage }, - { path: '/readingfood', component: ReadingFoodPage } - + { path: '/readingfood', component: ReadingFoodPage }, + { path: '/magiun3', component: Magiun3 }, + { path: '/amrotimes', component: AmroTimes }, + { path: '/atnofs', component: ATNOFSPage } ] })