From cd792dd5f4d74cfd0f8b540cbee77447928c3585 Mon Sep 17 00:00:00 2001 From: Bayu Date: Fri, 5 Jun 2026 10:00:42 +0700 Subject: [PATCH] chore(LimaEm): hapus fix.js sesuai permintaan setelah sinkronisasi --- fix.js | 73 ---------------------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 fix.js diff --git a/fix.js b/fix.js deleted file mode 100644 index b86e889..0000000 --- a/fix.js +++ /dev/null @@ -1,73 +0,0 @@ -const fs = require('fs'); -let c = fs.readFileSync('groups/LimaEm/index.html', 'utf8'); - -const oldHeroGrad = '
'; -const newHeroGrad = '
'; -c = c.replace(oldHeroGrad, newHeroGrad); - -const oldPhotoStr = \ -
- - -
- - -
- Ruang Tumbuh HMIF Universitas Tanjungpura - -
-
- - -
- -

- Inklusivitas &
Kolaborasi -

-
-
\; -const newPhotoStr = \ -
- -
- - -
- Ruang Tumbuh HMIF Universitas Tanjungpura - -
-
- - -
- -

- Inklusivitas &
Kolaborasi -

-
-
\; -c = c.replace(oldPhotoStr, newPhotoStr); -fs.writeFileSync('groups/LimaEm/index.html', c); -console.log('HTML layout fixed');