create-fullstack-boilerplate 2.2.2 → 2.2.4
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/package.json +1 -1
- package/template/Frontend/index.html +2 -2
- package/template/Frontend/public/load.webp +0 -0
- package/template/Frontend/src/components/Loader.jsx +1 -1
- package/template/Frontend/src/pages/Login.jsx +1 -1
- package/template/Frontend/public/PMDLogo.png +0 -0
- package/template/Frontend/public/tabicon.png +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fullstack-boilerplate",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "A powerful CLI tool to generate fully configured full-stack applications with React frontend and Express backend. Includes authentication middleware, database configuration, protected routes, route-based Axios instances, and encryption setup - all ready with a single command.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
|
-
<link rel="icon" type="image/svg+xml" href="/
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/pp.jpg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
-
<title>
|
|
7
|
+
<title>Full Stack Boilerplate</title>
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<div id="root"></div>
|
|
Binary file
|
|
@@ -6,7 +6,7 @@ const SpinningLoader = ({ size = 10 }) => {
|
|
|
6
6
|
return (
|
|
7
7
|
<div className={`flex flex-col justify-center items-center gap-4 h-full w-full ${isDark ? 'bg-gray-900' : 'bg-white'}`}>
|
|
8
8
|
<img
|
|
9
|
-
src={'/
|
|
9
|
+
src={'/load.webp'}
|
|
10
10
|
alt="Loading..."
|
|
11
11
|
style={{ width: "auto", height: size }}
|
|
12
12
|
className="animate-pulse"
|
|
@@ -69,7 +69,7 @@ const Login = () => {
|
|
|
69
69
|
{/* Header */}
|
|
70
70
|
<div className="px-6 pt-6 pb-4 text-center">
|
|
71
71
|
<div className="relative mb-4">
|
|
72
|
-
<img src={'/
|
|
72
|
+
<img src={'/pp.jpg'} alt="PMD Logo" className='w-max h-20 rounded-full shadow-md shadow-gray-400 mx-auto' />
|
|
73
73
|
</div>
|
|
74
74
|
|
|
75
75
|
<h1 className="text-2xl font-articulatcf-demibold text-gray-800 mb-1">Welcome Back</h1>
|
|
Binary file
|
|
Binary file
|