afront 1.0.24 → 1.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/.babelrc +13 -13
  2. package/.env +1 -1
  3. package/LICENSE +21 -21
  4. package/README.md +94 -94
  5. package/build-prod/index.html +1 -1
  6. package/build-prod/manifest.json +25 -25
  7. package/build-prod/offline.html +1023 -1023
  8. package/build-prod/robots.txt +3 -3
  9. package/build-prod-static/index.html +1 -1
  10. package/build-prod-static/manifest.json +25 -25
  11. package/build-prod-static/offline.html +1023 -1023
  12. package/build-prod-static/robots.txt +3 -3
  13. package/install.js +415 -415
  14. package/package.json +102 -96
  15. package/server.js +40 -40
  16. package/src/ARoutes/AFRoutes.js +28 -28
  17. package/src/Api/api.config.js +266 -266
  18. package/src/Api/login.service.js +44 -44
  19. package/src/App.js +28 -28
  20. package/src/Components/Background/MeshGradient.js +18 -18
  21. package/src/Components/Footer/Footer.js +108 -108
  22. package/src/Components/Header/Header.js +149 -149
  23. package/src/Components/Loading/LoadingIndicator.js +12 -12
  24. package/src/Components/Loading/LoadingIndicator.module.css +34 -34
  25. package/src/Components/Loading/LoadingSpinner.js +27 -27
  26. package/src/Components/Loading/LoadingSpinner.module.css +100 -100
  27. package/src/Components/RequireAuth.js +29 -29
  28. package/src/LoadingFallback.js +13 -13
  29. package/src/PageNotFound.js +19 -19
  30. package/src/Pages/Home.js +50 -50
  31. package/src/Pages/Signup.js +230 -230
  32. package/src/Pages/Support.js +68 -68
  33. package/src/Routes/ARoutes.js +66 -66
  34. package/src/Routes/ARoutesStatic.js +83 -83
  35. package/src/Static/appStatic.js +16 -16
  36. package/src/Static/indexStatic.js +13 -13
  37. package/src/Style/App.module.css +11 -11
  38. package/src/Style/MeshGradient.module.css +130 -130
  39. package/src/Style/PageNotFound.module.css +37 -37
  40. package/src/Style/Style.module.css +686 -686
  41. package/src/Style/Support.module.css +185 -185
  42. package/src/Utils/LoadingContext.js +5 -5
  43. package/src/index.js +25 -25
  44. package/webpack.build-prod.js +141 -140
  45. package/webpack.dev.js +127 -127
  46. package/webpack.prod.js +148 -147
  47. package/webpack.ssr.prod.js +97 -97
  48. package/npm-shrinkwrap.json +0 -9641
@@ -1,37 +1,37 @@
1
- .pageNotFoundContainer {
2
- display: flex;
3
- flex-direction: column;
4
- align-items: center;
5
- justify-content: center;
6
- min-height: 100vh;
7
- background-color: #f0f4f8;
8
- text-align: center;
9
- padding: 20px;
10
- }
11
-
12
- .heading {
13
- font-size: 2.5rem;
14
- color: #333;
15
- margin-bottom: 20px;
16
- text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
17
- }
18
-
19
- .subText {
20
- font-size: 1.2rem;
21
- color: #666;
22
- margin-bottom: 30px;
23
- }
24
-
25
- .homeLink {
26
- padding: 10px 20px;
27
- font-size: 1rem;
28
- color: #fff;
29
- background-color: #007bff;
30
- border-radius: 5px;
31
- text-decoration: none;
32
- transition: background-color 0.3s ease;
33
- }
34
-
35
- .homeLink:hover {
36
- background-color: #0056b3;
37
- }
1
+ .pageNotFoundContainer {
2
+ display: flex;
3
+ flex-direction: column;
4
+ align-items: center;
5
+ justify-content: center;
6
+ min-height: 100vh;
7
+ background-color: #f0f4f8;
8
+ text-align: center;
9
+ padding: 20px;
10
+ }
11
+
12
+ .heading {
13
+ font-size: 2.5rem;
14
+ color: #333;
15
+ margin-bottom: 20px;
16
+ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
17
+ }
18
+
19
+ .subText {
20
+ font-size: 1.2rem;
21
+ color: #666;
22
+ margin-bottom: 30px;
23
+ }
24
+
25
+ .homeLink {
26
+ padding: 10px 20px;
27
+ font-size: 1rem;
28
+ color: #fff;
29
+ background-color: #007bff;
30
+ border-radius: 5px;
31
+ text-decoration: none;
32
+ transition: background-color 0.3s ease;
33
+ }
34
+
35
+ .homeLink:hover {
36
+ background-color: #0056b3;
37
+ }