Skip to content

Commit 85a16c5

Browse files
committed
fix bug
1 parent fd22263 commit 85a16c5

File tree

3 files changed

+112
-7
lines changed

3 files changed

+112
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ Halaman ini muncul ketika pengguna melakukan pencarian film. Halaman ini berisi
8080
<img src="https://i.postimg.cc/PCSSQx5t/mobile-3.png" width="18%"/>
8181

8282

83-
### 6. Halaman About Dev (About Dev) 👨‍💻
83+
### 7. Halaman About Dev (About Dev) 👨‍💻
8484
Halaman ini berada di footer web app. Halaman ini berisi informasi mengenai developer dan info secara singkat pada proses management pengembangan web.
8585

8686
![sc about-dev](./README-ASSET/page/about-dev.png)
8787

88-
### 7. Halaman Tidak Ditemukan (404) 🚫
88+
### 8. Halaman Tidak Ditemukan (404) 🚫
8989
Halaman ini muncul ketika pengguna mengakses halaman yang tidak ada. Halaman ini berisi informasi mengenai halaman yang tidak ditemukan.
9090

9191
<div align="left">

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"start": "next start"
1111
},
1212
"dependencies": {
13+
"@emotion/react": "^11.10.5",
14+
"@emotion/styled": "^11.10.5",
1315
"@mui/material": "^5.6.1",
1416
"axios": "^1.2.0",
1517
"firebase": "^9.14.0",

yarn.lock

+108-5
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
dependencies:
154154
"@babel/types" "^7.18.9"
155155

156-
"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.18.6":
156+
"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6":
157157
version "7.18.6"
158158
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
159159
integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
@@ -470,6 +470,13 @@
470470
dependencies:
471471
"@babel/helper-plugin-utils" "^7.8.0"
472472

473+
"@babel/plugin-syntax-jsx@^7.17.12":
474+
version "7.18.6"
475+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0"
476+
integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==
477+
dependencies:
478+
"@babel/helper-plugin-utils" "^7.18.6"
479+
473480
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
474481
version "7.10.4"
475482
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
@@ -868,7 +875,7 @@
868875
"@babel/types" "^7.4.4"
869876
esutils "^2.0.2"
870877

871-
"@babel/runtime@^7.11.2", "@babel/runtime@^7.20.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7":
878+
"@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7":
872879
version "7.20.6"
873880
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"
874881
integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==
@@ -968,6 +975,24 @@
968975
dependencies:
969976
"@jridgewell/trace-mapping" "0.3.9"
970977

978+
"@emotion/babel-plugin@^11.10.5":
979+
version "11.10.5"
980+
resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.10.5.tgz#65fa6e1790ddc9e23cc22658a4c5dea423c55c3c"
981+
integrity sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==
982+
dependencies:
983+
"@babel/helper-module-imports" "^7.16.7"
984+
"@babel/plugin-syntax-jsx" "^7.17.12"
985+
"@babel/runtime" "^7.18.3"
986+
"@emotion/hash" "^0.9.0"
987+
"@emotion/memoize" "^0.8.0"
988+
"@emotion/serialize" "^1.1.1"
989+
babel-plugin-macros "^3.1.0"
990+
convert-source-map "^1.5.0"
991+
escape-string-regexp "^4.0.0"
992+
find-root "^1.1.0"
993+
source-map "^0.5.7"
994+
stylis "4.1.3"
995+
971996
"@emotion/cache@^11.10.5":
972997
version "11.10.5"
973998
resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.10.5.tgz#c142da9351f94e47527ed458f7bbbbe40bb13c12"
@@ -979,6 +1004,11 @@
9791004
"@emotion/weak-memoize" "^0.3.0"
9801005
stylis "4.1.3"
9811006

1007+
"@emotion/hash@^0.9.0":
1008+
version "0.9.0"
1009+
resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.0.tgz#c5153d50401ee3c027a57a177bc269b16d889cb7"
1010+
integrity sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==
1011+
9821012
"@emotion/is-prop-valid@^0.8.2":
9831013
version "0.8.8"
9841014
resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
@@ -1003,11 +1033,58 @@
10031033
resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.0.tgz#f580f9beb67176fa57aae70b08ed510e1b18980f"
10041034
integrity sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==
10051035

1036+
"@emotion/react@^11.10.5":
1037+
version "11.10.5"
1038+
resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.10.5.tgz#95fff612a5de1efa9c0d535384d3cfa115fe175d"
1039+
integrity sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==
1040+
dependencies:
1041+
"@babel/runtime" "^7.18.3"
1042+
"@emotion/babel-plugin" "^11.10.5"
1043+
"@emotion/cache" "^11.10.5"
1044+
"@emotion/serialize" "^1.1.1"
1045+
"@emotion/use-insertion-effect-with-fallbacks" "^1.0.0"
1046+
"@emotion/utils" "^1.2.0"
1047+
"@emotion/weak-memoize" "^0.3.0"
1048+
hoist-non-react-statics "^3.3.1"
1049+
1050+
"@emotion/serialize@^1.1.1":
1051+
version "1.1.1"
1052+
resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.1.tgz#0595701b1902feded8a96d293b26be3f5c1a5cf0"
1053+
integrity sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==
1054+
dependencies:
1055+
"@emotion/hash" "^0.9.0"
1056+
"@emotion/memoize" "^0.8.0"
1057+
"@emotion/unitless" "^0.8.0"
1058+
"@emotion/utils" "^1.2.0"
1059+
csstype "^3.0.2"
1060+
10061061
"@emotion/sheet@^1.2.1":
10071062
version "1.2.1"
10081063
resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.2.1.tgz#0767e0305230e894897cadb6c8df2c51e61a6c2c"
10091064
integrity sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==
10101065

1066+
"@emotion/styled@^11.10.5":
1067+
version "11.10.5"
1068+
resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.10.5.tgz#1fe7bf941b0909802cb826457e362444e7e96a79"
1069+
integrity sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw==
1070+
dependencies:
1071+
"@babel/runtime" "^7.18.3"
1072+
"@emotion/babel-plugin" "^11.10.5"
1073+
"@emotion/is-prop-valid" "^1.2.0"
1074+
"@emotion/serialize" "^1.1.1"
1075+
"@emotion/use-insertion-effect-with-fallbacks" "^1.0.0"
1076+
"@emotion/utils" "^1.2.0"
1077+
1078+
"@emotion/unitless@^0.8.0":
1079+
version "0.8.0"
1080+
resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.8.0.tgz#a4a36e9cbdc6903737cd20d38033241e1b8833db"
1081+
integrity sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==
1082+
1083+
"@emotion/use-insertion-effect-with-fallbacks@^1.0.0":
1084+
version "1.0.0"
1085+
resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz#ffadaec35dbb7885bd54de3fa267ab2f860294df"
1086+
integrity sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==
1087+
10111088
"@emotion/utils@^1.2.0":
10121089
version "1.2.0"
10131090
resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.2.0.tgz#9716eaccbc6b5ded2ea5a90d65562609aab0f561"
@@ -2147,6 +2224,15 @@ babel-loader@^8.2.5:
21472224
make-dir "^3.1.0"
21482225
schema-utils "^2.6.5"
21492226

2227+
babel-plugin-macros@^3.1.0:
2228+
version "3.1.0"
2229+
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
2230+
integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
2231+
dependencies:
2232+
"@babel/runtime" "^7.12.5"
2233+
cosmiconfig "^7.0.0"
2234+
resolve "^1.19.0"
2235+
21502236
babel-plugin-polyfill-corejs2@^0.3.3:
21512237
version "0.3.3"
21522238
resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122"
@@ -2470,7 +2556,7 @@ conventional-commit-types@^3.0.0:
24702556
resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz#7c9214e58eae93e85dd66dbfbafe7e4fffa2365b"
24712557
integrity sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==
24722558

2473-
convert-source-map@^1.7.0:
2559+
convert-source-map@^1.5.0, convert-source-map@^1.7.0:
24742560
version "1.9.0"
24752561
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
24762562
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
@@ -2737,6 +2823,11 @@ escape-string-regexp@^1.0.5:
27372823
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
27382824
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
27392825

2826+
escape-string-regexp@^4.0.0:
2827+
version "4.0.0"
2828+
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
2829+
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
2830+
27402831
estree-walker@^1.0.1:
27412832
version "1.0.1"
27422833
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
@@ -2836,7 +2927,7 @@ find-node-modules@^2.1.2:
28362927
findup-sync "^4.0.0"
28372928
merge "^2.1.1"
28382929

2839-
find-root@1.1.0:
2930+
find-root@1.1.0, find-root@^1.1.0:
28402931
version "1.1.0"
28412932
resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
28422933
integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
@@ -3171,6 +3262,13 @@ hey-listen@^1.0.8:
31713262
resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68"
31723263
integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==
31733264

3265+
hoist-non-react-statics@^3.3.1:
3266+
version "3.3.2"
3267+
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
3268+
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
3269+
dependencies:
3270+
react-is "^16.7.0"
3271+
31743272
homedir-polyfill@^1.0.1:
31753273
version "1.0.3"
31763274
resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
@@ -4328,7 +4426,7 @@ react-indiana-drag-scroll@^2.2.0:
43284426
debounce "^1.2.0"
43294427
easy-bem "^1.1.1"
43304428

4331-
react-is@^16.13.1:
4429+
react-is@^16.13.1, react-is@^16.7.0:
43324430
version "16.13.1"
43334431
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
43344432
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
@@ -4695,6 +4793,11 @@ source-map-support@~0.5.20:
46954793
buffer-from "^1.0.0"
46964794
source-map "^0.6.0"
46974795

4796+
source-map@^0.5.7:
4797+
version "0.5.7"
4798+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
4799+
integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
4800+
46984801
source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
46994802
version "0.6.1"
47004803
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"

0 commit comments

Comments
 (0)