From 3e56de133afc502d8e6e57fcaa302b45668428b8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 16 Feb 2026 23:48:14 +0000 Subject: [PATCH 1/2] Initial plan From 3bfde0762ebe6c85cf61708f8627559695bcd956 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 16 Feb 2026 23:51:54 +0000 Subject: [PATCH 2/2] Add code-text class to hero card for syntax highlighting Co-authored-by: brunoborges <129743+brunoborges@users.noreply.github.com> --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 10b06e3..d8fff6f 100644 --- a/index.html +++ b/index.html @@ -176,7 +176,7 @@
public class Point {
+ public class Point {
private final int x, y;
public Point(int x, int y) { ... }
public int getX() { return x; }
@@ -186,7 +186,7 @@ Java has evolved.
Your code can too.
public record Point(int x, int y) {}
+ public record Point(int x, int y) {}