Compare commits

...

10 Commits

Author SHA1 Message Date
7b2bb55a2b feat: update movie reviews URL to embed version
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 1m33s
Co-authored-by: Copilot <copilot@github.com>
2026-06-03 10:31:22 +02:00
6a3d9afd4f refactor: remove K-Tuner and K-QR from K-Suite page
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 1m7s
2026-05-17 23:56:02 +02:00
2e276b8864 thoughts
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 1m13s
2026-05-17 23:40:35 +02:00
07ec8f2ab1 feat: add canonical URL to metadata
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 1m9s
2026-05-16 14:05:42 +02:00
3301c6cfa5 feat: add gabrielkaszewski.pl to traefik router 2026-05-16 14:01:58 +02:00
71b871ed5c docs: add dual-domain implementation plan 2026-05-16 14:00:58 +02:00
f9f26dc584 docs: add dual-domain design spec 2026-05-16 13:59:48 +02:00
38fadf32f6 feat: add Movies Diary logo to project entry
All checks were successful
Build and Deploy Gabriel Kaszewski Portfolio / build-and-deploy-local (push) Successful in 1m40s
2026-05-13 23:56:07 +02:00
1dfb80cbb2 feat: add Movies Diary logo to K-Suite 2026-05-13 23:54:45 +02:00
764e419a32 feat: add Movies Diary to projects and K-Suite 2026-05-13 23:53:38 +02:00
8 changed files with 205 additions and 39 deletions

View File

@@ -29,39 +29,15 @@ const kSuiteApps: KSuiteApp[] = [
{
id: 2,
name: "Thoughts",
shortDescription: "Microblogging platform",
shortDescription: "Federated microblogging platform",
description:
"Nostalgic social platform with Frutiger Aero style. 128-char posts, custom CSS profiles.",
"Nostalgic social platform with Frutiger Aero style. 128-char posts, custom CSS profiles, and full ActivityPub federation — interoperable with Mastodon, Misskey, and Movies Diary.",
url: "https://thoughts.gabrielkaszewski.dev/",
githubUrl: "https://git.gabrielkaszewski.dev/GKaszewski/thoughts",
icon: "/images/thoughts.avif",
technologies: ["Rust", "Next.js", "Axum"],
technologies: ["Rust", "Next.js", "Axum", "ActivityPub", "PostgreSQL", "NATS"],
color: "from-cyan-400 to-blue-500",
},
{
id: 3,
name: "K-Tuner",
shortDescription: "Instrument tuner",
description:
"Tune guitar, ukulele, and piano with this Frutiger Aero styled PWA.",
url: "https://tuner.gabrielkaszewski.dev/",
githubUrl: "https://github.com/GKaszewski/k-tuner",
icon: "/images/k-tuner.png",
technologies: ["React", "PWA"],
color: "from-emerald-400 to-teal-500",
},
{
id: 4,
name: "K-QR",
shortDescription: "QR code generator",
description:
"High-performance QR generator. Single Rust executable serving clean HTML.",
url: "https://qr.gabrielkaszewski.dev/",
githubUrl: "https://github.com/GKaszewski/k-qr",
icon: "/images/k-qr.png",
technologies: ["Rust", "HTML"],
color: "from-amber-400 to-orange-500",
},
{
id: 5,
name: "K-TV",
@@ -74,18 +50,29 @@ const kSuiteApps: KSuiteApp[] = [
technologies: ["Rust", "Next.js", "TailwindCSS"],
color: "from-violet-400 to-purple-500",
},
{
id: 6,
name: "Movies Diary",
shortDescription: "Self-hosted movie logging with federation",
description:
"Log every film you watch, rate it, and share reviews across the Fediverse via ActivityPub. Federate with other instances, follow remote users, and browse a fully federated activity feed.",
url: "https://movies.gabrielkaszewski.dev/",
githubUrl: "https://github.com/GKaszewski/movies-diary",
icon: "/images/movies-diary.webp",
technologies: ["Rust", "Axum", "ActivityPub", "SQLite"],
color: "from-rose-400 to-red-500",
},
];
// Connection definitions for the organism
const connections = [
{ from: 0, to: 1 }, // K-Notes -> Thoughts
{ from: 1, to: 2 }, // Thoughts -> K-Tuner
{ from: 2, to: 3 }, // K-Tuner -> K-QR
{ from: 3, to: 4 }, // K-QR -> K-TV
{ from: 4, to: 0 }, // K-TV -> K-Notes
{ from: 0, to: 2 }, // K-Notes -> K-Tuner (cross)
{ from: 1, to: 3 }, // Thoughts -> K-QR (cross)
{ from: 2, to: 4 }, // K-Tuner -> K-TV (cross)
{ from: 1, to: 2 }, // Thoughts -> K-TV
{ from: 2, to: 3 }, // K-TV -> Movies Diary
{ from: 3, to: 0 }, // Movies Diary -> K-Notes
{ from: 0, to: 2 }, // K-Notes -> K-TV (cross)
{ from: 1, to: 3 }, // Thoughts -> Movies Diary (AP)
{ from: 3, to: 1 }, // Movies Diary -> Thoughts (federation)
];
const KSuiteOrganism = () => {

View File

@@ -29,6 +29,9 @@ export const metadata: Metadata = {
"Next.js",
"Portfolio",
],
alternates: {
canonical: "https://gabrielkaszewski.dev",
},
openGraph: {
title: "Gabriel Kaszewski | Software Engineer",
description:

View File

@@ -8,6 +8,8 @@ export const metadata: Metadata = {
const MOVIE_REVIEWS_URL =
"https://movies.gabrielkaszewski.dev/users/5d253151-0f6a-4246-9bc5-cb0b5869731b";
const MOVIE_REVIEWS_EMBED_URL =
"https://movies.gabrielkaszewski.dev/users/5d253151-0f6a-4246-9bc5-cb0b5869731b?embed=true";
const genres = ["Sci-Fi", "Drama", "Family"];
@@ -70,7 +72,7 @@ export default function MovieCornerPage() {
>
<div className="flex-1 overflow-hidden rounded-md flex flex-col">
<iframe
src={MOVIE_REVIEWS_URL}
src={MOVIE_REVIEWS_EMBED_URL}
title="Gabriel's Movie Reviews"
allow=""
loading="lazy"

View File

@@ -5,7 +5,7 @@ services:
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.gabrielkaszewski.rule=Host(`gabrielkaszewski.dev`)"
- "traefik.http.routers.gabrielkaszewski.rule=Host(`gabrielkaszewski.dev`) || Host(`gabrielkaszewski.pl`)"
- "traefik.http.routers.gabrielkaszewski.entrypoints=websecure"
- "traefik.http.routers.gabrielkaszewski.tls.certresolver=letsencrypt"
networks:

View File

@@ -0,0 +1,113 @@
# Dual-Domain Support Implementation Plan
> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking.
**Goal:** Serve the portfolio on both `gabrielkaszewski.dev` and `gabrielkaszewski.pl` with identical content, with `.dev` as the canonical domain for SEO.
**Architecture:** Two independent changes — Traefik routing config to accept both hostnames, and Next.js metadata to inject a canonical `<link>` tag. No app logic changes.
**Tech Stack:** Next.js 15 (App Router metadata API), Traefik (Docker labels), Let's Encrypt TLS.
---
### Task 1: Add `.pl` domain to Traefik router
**Files:**
- Modify: `compose.yml`
- [ ] **Step 1: Update the Traefik router rule**
In `compose.yml`, change the router rule label from:
```yaml
- "traefik.http.routers.gabrielkaszewski.rule=Host(`gabrielkaszewski.dev`)"
```
to:
```yaml
- "traefik.http.routers.gabrielkaszewski.rule=Host(`gabrielkaszewski.dev`) || Host(`gabrielkaszewski.pl`)"
```
The full `labels` block should look like:
```yaml
labels:
- "traefik.enable=true"
- "traefik.http.routers.gabrielkaszewski.rule=Host(`gabrielkaszewski.dev`) || Host(`gabrielkaszewski.pl`)"
- "traefik.http.routers.gabrielkaszewski.entrypoints=websecure"
- "traefik.http.routers.gabrielkaszewski.tls.certresolver=letsencrypt"
```
Note: Traefik's Let's Encrypt cert resolver automatically provisions a cert for every hostname matched by the router rule, so no additional TLS labels are needed.
- [ ] **Step 2: Commit**
```bash
git add compose.yml
git commit -m "feat: add gabrielkaszewski.pl to traefik router"
```
---
### Task 2: Add canonical URL to Next.js metadata
**Files:**
- Modify: `app/layout.tsx`
- [ ] **Step 1: Add `alternates.canonical` to the metadata export**
In `app/layout.tsx`, add `alternates` to the existing `metadata` object:
```ts
export const metadata: Metadata = {
title: {
default: "Gabriel Kaszewski | Software Engineer",
template: "%s | Gabriel Kaszewski",
},
description:
"The portfolio of Gabriel Kaszewski, a software engineer specializing in Rust, Python, and modern web technologies.",
keywords: [
"Gabriel Kaszewski",
"Software Engineer",
"Rust Developer",
"Python Developer",
"Next.js",
"Portfolio",
],
alternates: {
canonical: "https://gabrielkaszewski.dev",
},
openGraph: {
// ... rest unchanged
},
// ... rest unchanged
};
```
- [ ] **Step 2: Verify the canonical tag is present in the built HTML**
Run the dev server:
```bash
bun run dev
```
Then in another terminal, check the rendered HTML for the canonical tag:
```bash
curl -s http://localhost:3000 | grep -i canonical
```
Expected output:
```
<link rel="canonical" href="https://gabrielkaszewski.dev"/>
```
- [ ] **Step 3: Commit**
```bash
git add app/layout.tsx
git commit -m "feat: add canonical URL to metadata"
```

View File

@@ -0,0 +1,38 @@
# Dual-Domain Support
**Date:** 2026-05-16
**Status:** Approved
## Goal
Serve the portfolio under both `gabrielkaszewski.dev` and `gabrielkaszewski.pl` with identical content. The `.dev` domain is canonical for SEO.
## Changes
### 1. `compose.yml` — Traefik router rule
Extend the `Host()` rule to accept both domains and cover both with TLS:
```yaml
- "traefik.http.routers.gabrielkaszewski.rule=Host(`gabrielkaszewski.dev`) || Host(`gabrielkaszewski.pl`)"
- "traefik.http.routers.gabrielkaszewski.entrypoints=websecure"
- "traefik.http.routers.gabrielkaszewski.tls.certresolver=letsencrypt"
```
### 2. `app/layout.tsx` — canonical metadata
Add `alternates.canonical` to the exported `metadata` object:
```ts
alternates: {
canonical: "https://gabrielkaszewski.dev",
},
```
This injects `<link rel="canonical" href="https://gabrielkaszewski.dev">` into every page's `<head>`, telling search engines the `.dev` domain is authoritative.
## Out of scope
- No redirects — `.pl` serves content directly.
- No per-domain content differences.
- No changes to OpenGraph or JSON-LD (already hardcoded to `.dev`).

View File

@@ -185,14 +185,14 @@ export const projects: Project[] = [
id: 6,
name: "Thoughts",
short_description:
"Nostalgic microblogging platform with a Frutiger Aero aesthetic.",
"Federated microblogging platform with a Frutiger Aero aesthetic.",
description:
"Thoughts is a microblogging social website straight out of the 00s, featuring a distinctive Frutiger Aero style. Users can post short text-based thoughts (up to 128 characters), customize their entire profile page with their own CSS, and follow others in a purely chronological, algorithm-free environment. It's a return to the 'old times' of the web, focusing on genuine interaction and user expression.\n\n**Technical details:**\n- **Backend:** Rust\n- **Frontend:** Next.js",
"Thoughts is a fully federated microblogging platform built on ActivityPub, compatible with Mastodon, Misskey, Pleroma, and Movies Diary. It features a distinctive Frutiger Aero style straight out of the 00s.\n\nUsers can post short thoughts (up to 128 characters), reply, boost, and like. Profiles are fully customizable with user-supplied CSS. The feed is purely chronological — no algorithms.\n\n**Federation:**\n- WebFinger, NodeInfo, shared inbox, paginated outbox, and actor profile sync\n- Remote actor discovery by `@user@instance` handle\n- Follow/unfollow remote actors with proper `Accept`/`Follow` delivery\n- Per-domain and per-actor moderation with `Block` activity delivery\n\n**Technical details:**\n- **Architecture:** Hexagonal (Ports & Adapters)\n- **Backend:** Rust, Axum, SQLx\n- **Frontend:** Next.js, TailwindCSS\n- **Database:** PostgreSQL (full-text search via trigram indexes)\n- **Event bus:** NATS JetStream (async AP delivery and notifications)\n- **Auth:** JWT + API key\n- **Docs:** OpenAPI (Swagger UI + Scalar)",
category: "Web",
github_url: "https://git.gabrielkaszewski.dev/GKaszewski/thoughts",
visit_url: "https://thoughts.gabrielkaszewski.dev/",
download_url: null,
technologies: ["Rust", "Next.js", "TailwindCSS", "Axum"],
technologies: ["Rust", "Axum", "Next.js", "TailwindCSS", "ActivityPub", "PostgreSQL", "NATS"],
thumbnails: ["/images/thoughts.avif"],
},
{
@@ -455,6 +455,29 @@ export const projects: Project[] = [
thumbnails: ["/images/galeria_rumia.avif", "/images/galeria_rumia2.avif"],
commercial: true,
},
{
id: 24,
name: "Movies Diary",
short_description:
"Self-hosted movie logging with ActivityPub federation.",
description:
"A self-hosted, server-side rendered movie logging system with a full REST API. Built entirely in Rust with no JavaScript in the HTML interface — just HTML forms and an RSS feed.\n\n**Highlights:**\n- Immutable, append-only viewing ledger (tracks re-watches)\n- ActivityPub federation — follow remote users, broadcast reviews as federated Notes, shared inbox, paginated outbox\n- Full-text search via SQLite FTS5 or PostgreSQL tsvector + GIN\n- Background poster fetching, TMDB enrichment (cast, crew, genres, box office), image conversion to AVIF/WebP\n- File importer: CSV, TSV, JSON, XLSX from Letterboxd, IMDb, etc.\n- Dual database support: SQLite and PostgreSQL\n- Terminal UI client\n- OpenAPI documentation (Swagger UI + Scalar)\n\n**Technical details:**\n- **Architecture:** Hexagonal (Ports & Adapters) with DDD\n- **Backend:** Rust, Axum, SQLx\n- **Templates:** Askama (SSR)\n- **Event bus:** SQLite/PostgreSQL queue or NATS JetStream\n- **Federation:** ActivityPub (AP)",
category: "Web",
github_url: "https://github.com/GKaszewski/movies-diary",
visit_url: "https://movies.gabrielkaszewski.dev/",
download_url: null,
technologies: [
"Rust",
"Axum",
"SQLite",
"PostgreSQL",
"ActivityPub",
"Askama",
"NATS",
"Docker",
],
thumbnails: ["/images/movies-diary.webp"],
},
{
id: 23,
name: "Pixel palette colorizer",

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB