larxius commited on
Commit
4d48240
·
verified ·
1 Parent(s): 13f5daf

Update frontend/src/pages/Register.jsx

Browse files
Files changed (1) hide show
  1. frontend/src/pages/Register.jsx +23 -7
frontend/src/pages/Register.jsx CHANGED
@@ -94,13 +94,29 @@ export const Register = () => {
94
  {/* Value Proposition */}
95
  <div className="z-10 max-w-md text-left animate-slide-up" style={{ animationDelay: '100ms' }}>
96
 
97
- {/* Security Graphic Image */}
98
- <div className="mb-6 flex justify-center lg:justify-start">
99
- <img
100
- src="/shield-3d-podium.png"
101
- alt="LarShield Enterprise Graphic"
102
- className="w-72 max-w-full h-auto object-contain drop-shadow-2xl hover:scale-105 transition-transform duration-300"
103
- />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  </div>
105
 
106
  <h2 className="text-3xl font-bold text-slate-900 mb-4 leading-tight">Secure your infrastructure with confidence.</h2>
 
94
  {/* Value Proposition */}
95
  <div className="z-10 max-w-md text-left animate-slide-up" style={{ animationDelay: '100ms' }}>
96
 
97
+ {/* High-End 3D Security Emblem Showcase */}
98
+ <div className="mb-8 relative group">
99
+ {/* Ambient Background Glow */}
100
+ <div className="absolute -inset-1 bg-gradient-to-r from-blue-600/15 to-indigo-600/15 rounded-3xl blur-xl opacity-75 group-hover:opacity-100 transition duration-500"></div>
101
+
102
+ {/* Main Showcase Container */}
103
+ <div className="relative rounded-3xl bg-white border border-slate-100 shadow-xl shadow-slate-200/60 p-6 flex flex-col items-center justify-center overflow-hidden">
104
+
105
+ {/* Top Pill Badge */}
106
+ <div className="self-start inline-flex items-center gap-2 px-3 py-1 rounded-full bg-blue-50 border border-blue-200/60 text-blue-700 text-xs font-semibold mb-1 shadow-xs">
107
+ <span className="w-2 h-2 rounded-full bg-blue-600 animate-pulse"></span>
108
+ <span>Enterprise Security Suite</span>
109
+ </div>
110
+
111
+ {/* 3D Shield Graphic with Multiply Blend to remove white square box */}
112
+ <div className="relative w-full flex justify-center py-2">
113
+ <img
114
+ src="/shield-3d-podium.png"
115
+ alt="LarShield Enterprise 3D Podium"
116
+ className="w-64 max-w-full h-auto object-contain mix-blend-multiply drop-shadow-md transform group-hover:scale-105 transition-transform duration-500"
117
+ />
118
+ </div>
119
+ </div>
120
  </div>
121
 
122
  <h2 className="text-3xl font-bold text-slate-900 mb-4 leading-tight">Secure your infrastructure with confidence.</h2>