"": {
"name": "cotsuka.github.io",
"dependencies": {
- "@astrojs/mdx": "^4.3.0",
+ "@astrojs/mdx": "^4.3.3",
"@astrojs/react": "^4.3.0",
"@astrojs/rss": "^4.0.12",
- "@astrojs/sitemap": "^3.4.1",
+ "@astrojs/sitemap": "^3.4.2",
"@fontsource-variable/public-sans": "^5.2.6",
"@fontsource-variable/source-code-pro": "^5.2.6",
- "@types/react": "^19.1.8",
- "@types/react-dom": "^19.1.6",
+ "@types/react": "^19.1.9",
+ "@types/react-dom": "^19.1.7",
"@vercel/og": "^0.6.8",
"astro": "5.11.0",
- "react": "^19.1.0",
- "react-dom": "^19.1.0",
+ "react": "^19.1.1",
+ "react-dom": "^19.1.1",
"recharts": "^3.1.0",
},
"devDependencies": {
- "@types/bun": "^1.2.18",
+ "@types/bun": "^1.2.19",
},
},
},
posse:
Letterboxd: https://letterboxd.com/cotsuka/film/fallen-angels/
---
+import Spoiler from '@components/ui/spoiler.astro';
+

- the wide-angle field of view, close-up shots, blurred/slowed/sped up scenes, and trip-hop soundtrack all create a dizzying effect.
- scenes are beautifully constructed. for example, the final restaurant scene between the hitman and his partner.
- surprisingly funny (e.g., ice cream truck with family)
-<details class="spoiler">
- <summary>Spoiler</summary>
+<Spoiler>
- did the hitman know his partner put a hit out on him? seems like he knows a lot about her (and she knows a lot about him). so in a way, he knew the only way for her to move on was killing him, and she knew he wanted to die. their final hit as partners.
-</details>
+</Spoiler>

\ No newline at end of file
--- /dev/null
+<details class="spoiler">
+ <summary>Spoiler</summary>
+ <slot />
+</details>
+
+<style>
+ details.spoiler {
+ color: #ffffff;
+ background-color: #000000;
+ margin-bottom: 1rem;
+ padding: 0.5rem;
+ }
+ details.spoiler[open] {
+ color: unset;
+ background-color: unset;
+ border: 0.1rem solid;
+ }
+</style>
\ No newline at end of file
font-family: "Source Code Pro Variable", monospace;
margin-bottom: 1rem;
padding: 0.1rem;
-}
-details.spoiler {
- color: #ffffff;
- background-color: #000000;
- margin-bottom: 1rem;
- padding: 0.5rem;
-}
-details.spoiler[open] {
- color: unset;
- background-color: unset;
- border: 0.1rem solid;
}
\ No newline at end of file