From 10d882fce62840496578eeaf4aa46da9e405460b Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Mon, 4 May 2026 23:02:34 +0200 Subject: [PATCH] feat: add movie-corner page with cinematic hero and embedded reviews --- app/movie-corner/page.tsx | 81 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 app/movie-corner/page.tsx diff --git a/app/movie-corner/page.tsx b/app/movie-corner/page.tsx new file mode 100644 index 0000000..7989036 --- /dev/null +++ b/app/movie-corner/page.tsx @@ -0,0 +1,81 @@ +import { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Movie Corner | Gabriel Kaszewski", + description: + "My personal cinema journal — what I watch and how I feel about it.", +}; + +const MOVIE_REVIEWS_URL = + "https://movies.gabrielkaszewski.dev/users/5d253151-0f6a-4246-9bc5-cb0b5869731b"; + +const genres = ["Sci-Fi", "Drama", "Family"]; + +export default function MovieCornerPage() { + return ( +
+
+
+
+
+ +
+
🎬
+ +

+ Movie Corner +

+ +

+ What I watch, what I think. A personal cinema journal. +

+ +
+

+ “I'd only give one piece of advice to anyone marrying. + We're all quite similar in the end. We all get old and tell + the same tales too many times. But try and marry someone + kind.” +

+ + — About Time, 2013 + +
+ +
+ {genres.map((genre, i) => ( + + {genre} + + ))} +
+
+
+ +
+