fix(login): replace broken private artisan image with reliable high-res public asset and polish phone input
This commit is contained in:
parent
6190f5b699
commit
43f955a752
1 changed files with 6 additions and 3 deletions
|
|
@ -79,8 +79,11 @@ export default function LoginPage() {
|
|||
{/* Authentic Artisan Photography Showcase */}
|
||||
<div style={{ borderRadius: '16px', overflow: 'hidden', border: '1px solid #E5E0DC', marginBottom: '1.5rem', boxShadow: '0 2px 8px rgba(0,0,0,0.04)', position: 'relative' }}>
|
||||
<img
|
||||
src="https://lh3.googleusercontent.com/aida/AEtjO1VVqC1Yq2L6fTDJ4jPuxxPQiR-Os8nuASct0PE-ib1UjQvWO_KRAPJkDjXOHTC2SryHVm9GK7t6I__E36AaIEf8e2gI4m5ujdJPa-XYOSKNY0dRzcwUwLQ4t6zKs98nvakERchACvV_DyH-w0J5s6sLkhmD9QYgmNyXc5rtNRHZUpCMmcgUJ19mJG8QAX3AmVi5eUmiqnZT3XYVTsvg8BJFzFB38Lhh3k-N4wie09_NRvfGEFYT6hWAwBdj"
|
||||
alt="Indian artisan potter"
|
||||
src="https://images.unsplash.com/photo-1578749556568-bc2c40e68b61?auto=format&fit=crop&q=80&w=800"
|
||||
onError={(e) => {
|
||||
(e.target as HTMLImageElement).src = "https://lh3.googleusercontent.com/aida-public/AB6AXuAAFsGHQxH4paIeyYZq8omfEOk4T6ZEJqZYRodaOcQHD0LtVHFHgCIbibIROjn374aCnXLV8lMu_a4PAiB2hSlSCweYGsHwS5Yo_qSy1nNAZPLlYCBJAm4rGsYoeyu_UDpTNR8eQjl_nUnYEjlNe_bS3LYk8VhaJnlE2uy_LsQmUuW-JWNYEqV9vbFeeG1VBgLjqUD7HixjvwxkWx9prT2WTwoTN0fOnHqxndcVNs1jPMAkFLc2y9082g";
|
||||
}}
|
||||
alt="Indian artisan potter shaping handcrafted pottery"
|
||||
style={{ width: '100%', height: '180px', objectFit: 'cover', display: 'block' }}
|
||||
/>
|
||||
</div>
|
||||
|
|
@ -296,7 +299,7 @@ export default function LoginPage() {
|
|||
maxLength={10}
|
||||
value={phone}
|
||||
onChange={(e) => setPhone(e.target.value)}
|
||||
style={{ border: '1px solid #D1CAC7', height: '42px', fontSize: '0.9rem' }}
|
||||
style={{ border: '1px solid #D1CAC7', borderRadius: 0, height: '42px', fontSize: '0.9rem' }}
|
||||
/>
|
||||
</p>
|
||||
<p className="control">
|
||||
|
|
|
|||
Loading…
Reference in a new issue