Skip to content

Commit

Permalink
content: wrote misstee post
Browse files Browse the repository at this point in the history
  • Loading branch information
vanessacor committed Jul 7, 2024
1 parent 94ee187 commit ea9e924
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"*.{ts, astro, mdx}": ["eslint --ignore-path .gitignore --fix"]
}
Binary file added public/assets/pics/misstee.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/pics/misstee2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/pics/misstee3.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/pics/misstee4.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/pics/misstee5.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/pics/misstee6.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/pics/misstee7.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/pics/misstee8.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/pics/misstee9.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/components/blog/ImageGallery.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<section class="gallery">
<slot />
</section>
<style scoped>
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-auto-rows: minmax(200px, auto);
gap: 10px;
}
</style>
10 changes: 10 additions & 0 deletions src/components/blog/ImageItem.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<figure>
<slot />
</figure>
<style scoped>
figure {
display: flex;
justify-content: center;
align-items: baseline;
}
</style>
27 changes: 21 additions & 6 deletions src/content/blog/misstee.mdx
Original file line number Diff line number Diff line change
@@ -1,13 +1,28 @@
---
title: "We Misstee you"
tags: ["life", "cats"]
updateDate: "2024/05/01"
description: ""
draft: true
updateDate: "2024/07/07"
description: "We do misstee you. You left us too soon and because of that it hurts too much"
draft: false
---

La meva gata es petita como una margarita, this little poem was wrote just a couple of months after you became part of our family. And it expresses in simple words the love we felt since the moment we met. You arrived to our house when we were still settling in the new town and I guess in a way we all shared the same process: we were all discovery this new city, adjusting our lifes to the new house, and discovery a new life. For you was discovering this new family, and making all the little corners of our house your world.
import ImageGallery from "../../components/blog/ImageGallery.astro";
import ImageItem from "../../components/blog/ImageItem.astro";

We misstee your greetings when we got home, We misstee you loosing your manners when you smelled shrimps We misstee you chasing us around the house when you thought it was lunch time, which for you everyday it was an hour earlier We misstee you cuddling in our laps We misstee you streching out the eating in the balcony during the hot summer days We misstee you how to act indeferently or sometimes gently to unwelcomed visits: misstee please do you cat job with the cockroach. We misstee your weight in our bed and waking up with gentle but harsh kiss
La meva gata es petita como una margarita. This little poem was written just a couple of months after you became part of our family. It expresses in simple words the love we felt since the moment we met. You arrived at our house when we were still settling into the new town, and I guess in a way we all shared the same process: we were all discovering this new city, adjusting our lives to the new house, and discovering a new life. For you, it was about discovering this new family and making all the little corners of our house your world.

We do misstee you. You left us too soon and because of that it hurts too much
We _misstee_ your greetings when we got home. We _misstee_ you losing your manners when you smelled shrimp. We _misstee_ you chasing us around the house when you thought it was lunchtime, which for you was an hour earlier every day. We _misstee_ how gently you greeted unwelcome visitors: "Misstee, please do your cat job with the cockroach." We _misstee_ you cuddling in our laps. We _misstee_ you stretching out in the heat on the balcony during the hot summer days. We miss your weight in our bed and waking up with your gentle but harsh kisses.

We _misstee_ you, we do _misstee_ you. You left us too soon, and because of that, it hurts too much.

<ImageGallery>
<ImageItem>![my image2](/assets/pics/misstee2.jpeg)</ImageItem>
<ImageItem>![my image](/assets/pics/misstee.jpeg)</ImageItem>
<ImageItem>![my image3](/assets/pics/misstee3.jpeg)</ImageItem>
<ImageItem>![my image5](/assets/pics/misstee5.jpeg)</ImageItem>
<ImageItem>![my image6](/assets/pics/misstee6.jpeg)</ImageItem>
<ImageItem>![my image4](/assets/pics/misstee4.jpeg)</ImageItem>
<ImageItem>![my image8](/assets/pics/misstee8.jpeg)</ImageItem>
<ImageItem>![my image7](/assets/pics/misstee7.jpeg)</ImageItem>
<ImageItem>![my image9](/assets/pics/misstee9.jpeg)</ImageItem>
</ImageGallery>

0 comments on commit ea9e924

Please sign in to comment.