From 45539d8309458fb97f9fad560a9f5e4b69e49e9e Mon Sep 17 00:00:00 2001 From: Daniil Sheftelevich Date: Wed, 3 Jan 2024 01:22:13 +0200 Subject: [PATCH] Update content and styles --- package.json | 1 + pnpm-lock.yaml | 7 +++ src/content/bio.md | 3 + src/content/description.md | 23 +++++++ src/layouts/Layout.astro | 47 ++++++++++++++- src/pages/index.astro | 119 +++++++++++++++---------------------- 6 files changed, 127 insertions(+), 73 deletions(-) create mode 100644 src/content/bio.md create mode 100644 src/content/description.md diff --git a/package.json b/package.json index 7ef2f18..fb4043a 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ }, "dependencies": { "@astrojs/check": "^0.3.4", + "@fontsource-variable/raleway": "^5.0.17", "astro": "^4.0.9", "typescript": "^5.3.3" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 68ffe5b..5b71d9f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,6 +8,9 @@ dependencies: '@astrojs/check': specifier: ^0.3.4 version: 0.3.4(typescript@5.3.3) + '@fontsource-variable/raleway': + specifier: ^5.0.17 + version: 5.0.17 astro: specifier: ^4.0.9 version: 4.0.9(typescript@5.3.3) @@ -585,6 +588,10 @@ packages: dev: false optional: true + /@fontsource-variable/raleway@5.0.17: + resolution: {integrity: sha512-wPkYD9UACWS1fM4GUYwKhJDGE5tD1IuVIkGcbccsuip+PmbIRApqDF7tlpkD333xXlmP4tsRZsXkAj8IBTkRrg==} + dev: false + /@img/sharp-darwin-arm64@0.33.1: resolution: {integrity: sha512-esr2BZ1x0bo+wl7Gx2hjssYhjrhUsD88VQulI0FrG8/otRQUOxLWHMBd1Y1qo2Gfg2KUvXNpT0ASnV9BzJCexw==} engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} diff --git a/src/content/bio.md b/src/content/bio.md new file mode 100644 index 0000000..3c365e3 --- /dev/null +++ b/src/content/bio.md @@ -0,0 +1,3 @@ +- documentary filmmaker +- reportage photographer +- art/style photographer \ No newline at end of file diff --git a/src/content/description.md b/src/content/description.md new file mode 100644 index 0000000..31464f2 --- /dev/null +++ b/src/content/description.md @@ -0,0 +1,23 @@ +Anna is a prominent media professional with a focus on social and LGBTQ+ narratives in documentary filmmaking. With just a director career spanning over four years, she has been pivotal in developing the YouTube channel **"Straight talk with gay people by Karen Shainyan"**, which has become a crucial platform for discussing LGBTQ+ issues within Russia. The channel has successfully reached approximately more than 200,000 subscribers featuring interviews with notable figures and exploring various facets of queer life in Russia. + +## Projects + +### Queerography + +Anna broadened her impact with “Queerography” [youtube](https://www.youtube.com/watch?v=a6dean6qJHM) (English subtitles) the first documentary series dedicated to the queer community's experience across Russia: thousands of kilometres from Kaliningrad to Vladivostok. The series sheds light on the queer life amidst legal and societal challenges. + +### Skazhi Gordeevoi (Tell Gordeeva) + +Collaborating with Katerina Gordeeva [youtube](https://www.youtube.com/c/skazhigordeevoy/featured), Anna co-created the project “Skazhi Gordeevoi” for Russian independent media outlet Meduza.io. Serving as the director and DOP, Anna has been producing the very first 20 episodes that delve into a variety of compelling stories and voices forming the concept that has been thriving till today. + +## Highlights + +- Yekaterinburg, Queerography series. The film showcases the vibrant lives of Yekaterinburg's residents, from trans-activists to war veterans turned drag queens, as they navigate family, acceptance, and the right to love in a city renowned for its economic significance and cultural milestones like hosting Russia's first gay pride parades. **49m**, [youtube](https://www.youtube.com/watch?v=a6dean6qJHM) (English subtitles) +- Elena Kostyuchenko, special correspondent for Novaya Gazeta about her work in the war in Ukraine, the environmental disaster in Norilsk, and also about how to live and love in Russia if you are a lesbian. **1h48m**, [youtube](https://www.youtube.com/watch?v=AAV7yPTHjyA) (English subtitles) +- The investigative video delves into the harrowing plight of LGBTQ+ people in Chechnya, unearthing the stark realities behind international sanctions and societal perceptions within the Russian context. **1h09m**, [youtube](https://www.youtube.com/watch?v=tCYTKvzrUug) (English subtitles) +- Billy Porter, The Kinky Boots and Pose actor, speaks about Trump, bullying, winning the red carpet game and his war on gender stereotypes. **1h03m**, [youtube](https://www.youtube.com/watch?v=FQdE7d3dtWM&t=0s) +- Interviews with queer influencers: [watch here](https://www.youtube.com/playlist?list=PLgNBPM5oMiVpZmbwLrUB5qkG4G7ASPJUr) +- Sci-fi series on queerness: [explore the series](https://www.youtube.com/playlist?list=PLgNBPM5oMiVpDK2tNhkbVlA0xqf_zneB_) +- Other “Skazhi Gordeevoi” episodes: [Meduza project](https://www.youtube.com/c/skazhigordeevoy/videos) + +Anna's work not only captures the essence of contemporary queer narratives but also boldly ventures into spaces of significant social and political sensitivity. Her portfolio is a testament to her dedication to authenticity, storytelling, and the pursuit of visibility for marginalized communities. \ No newline at end of file diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 3ac750f..073bd52 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,4 +1,5 @@ --- +import "@fontsource-variable/raleway"; interface Props { title: string; } @@ -6,7 +7,6 @@ interface Props { const { title } = Astro.props; --- - @@ -28,6 +28,27 @@ const { title } = Astro.props; diff --git a/src/pages/index.astro b/src/pages/index.astro index db6e7bc..8de1641 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,112 +1,91 @@ --- import Layout from "../layouts/Layout.astro"; +import { Content as Description } from "../content/description.md"; +import { Content as Bio } from "../content/bio.md"; ---
-

@annashmitko

+
+

@annashmitko

+
+
+
+ +
-
    -
  • documentary filmmaker
  • -
  • reportage photographer
  • -
  • art/style photographer
  • -
contact:
- annashmitko@gmail.comannashmitko@gmail.com
- instagraminstagram
- -
-