From 3307601fbcc30efcbff3a29776c5fb2c4bd9ea32 Mon Sep 17 00:00:00 2001 From: Anton Kupriianov Date: Mon, 28 Apr 2025 13:55:10 -0700 Subject: [PATCH] Remove numbers and Latin chars from katakana in Hero component --- src/components/Hero.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Hero.jsx b/src/components/Hero.jsx index 03fccee..f7e753d 100644 --- a/src/components/Hero.jsx +++ b/src/components/Hero.jsx @@ -32,7 +32,7 @@ function Hero() { // Japanese katakana characters + some latin characters and numbers const katakana = - "アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヲン0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; + "アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヲン"; const latin = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; const nums = "0123456789"; const alphabet = katakana + latin + nums;