From c0667dcd86102f619c0117752a83147a459d8e89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Szewczyk?= Date: Mon, 6 May 2024 14:53:53 +0200 Subject: [PATCH] Refactor image links in page component --- src/app/images/page.tsx | 62 ++++++++++++++++++++--------------------- 1 file changed, 30 insertions(+), 32 deletions(-) diff --git a/src/app/images/page.tsx b/src/app/images/page.tsx index 25e2a87..d55a6b0 100644 --- a/src/app/images/page.tsx +++ b/src/app/images/page.tsx @@ -2,38 +2,36 @@ import Link from "next/link"; export default function Home() { return ( -
-
- -

- External Images - - -> - -

-

- Test for remote images -

- + <> + +

+ External Images + + -> + +

+

+ Test for remote images +

+ - -

- Internal Images - - -> - -

-

- Test for local images -

- -
-
+ +

+ Internal Images + + -> + +

+

+ Test for local images +

+ + ); }