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.
- package/.babelrc +13 -13
- package/.env +1 -1
- package/LICENSE +21 -21
- package/README.md +94 -94
- package/build-prod/index.html +1 -1
- package/build-prod/manifest.json +25 -25
- package/build-prod/offline.html +1023 -1023
- package/build-prod/robots.txt +3 -3
- package/build-prod-static/index.html +1 -1
- package/build-prod-static/manifest.json +25 -25
- package/build-prod-static/offline.html +1023 -1023
- package/build-prod-static/robots.txt +3 -3
- package/install.js +415 -415
- package/package.json +102 -96
- package/server.js +40 -40
- package/src/ARoutes/AFRoutes.js +28 -28
- package/src/Api/api.config.js +266 -266
- package/src/Api/login.service.js +44 -44
- package/src/App.js +28 -28
- package/src/Components/Background/MeshGradient.js +18 -18
- package/src/Components/Footer/Footer.js +108 -108
- package/src/Components/Header/Header.js +149 -149
- package/src/Components/Loading/LoadingIndicator.js +12 -12
- package/src/Components/Loading/LoadingIndicator.module.css +34 -34
- package/src/Components/Loading/LoadingSpinner.js +27 -27
- package/src/Components/Loading/LoadingSpinner.module.css +100 -100
- package/src/Components/RequireAuth.js +29 -29
- package/src/LoadingFallback.js +13 -13
- package/src/PageNotFound.js +19 -19
- package/src/Pages/Home.js +50 -50
- package/src/Pages/Signup.js +230 -230
- package/src/Pages/Support.js +68 -68
- package/src/Routes/ARoutes.js +66 -66
- package/src/Routes/ARoutesStatic.js +83 -83
- package/src/Static/appStatic.js +16 -16
- package/src/Static/indexStatic.js +13 -13
- package/src/Style/App.module.css +11 -11
- package/src/Style/MeshGradient.module.css +130 -130
- package/src/Style/PageNotFound.module.css +37 -37
- package/src/Style/Style.module.css +686 -686
- package/src/Style/Support.module.css +185 -185
- package/src/Utils/LoadingContext.js +5 -5
- package/src/index.js +25 -25
- package/webpack.build-prod.js +141 -140
- package/webpack.dev.js +127 -127
- package/webpack.prod.js +148 -147
- package/webpack.ssr.prod.js +97 -97
- 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
|
+
}
|