Compare commits

...

6 commits

19 changed files with 1066 additions and 618 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

View file

@ -267,5 +267,34 @@ describe('Supplier Portal Onboarding & Active Dashboard Tests', () => {
globalThis.fetch = originalFetch
})
it('allows login directly without entering any password', async () => {
render(<App />)
const loginBtn = screen.getByText(/^Login$/i)
fireEvent.click(loginBtn)
const submitBtn = screen.getByRole('button', { name: /Sign In/i })
fireEvent.click(submitBtn)
expect(await screen.findByText(/Total Sales/i)).toBeInTheDocument()
})
it('allows signup without entering any password', async () => {
render(<App />)
const getStartedBtn = screen.getByText(/^Get started$/i)
fireEvent.click(getStartedBtn)
fireEvent.change(screen.getByPlaceholderText(/Enter your email/i), { target: { value: 'artisan_nopass@tradhox.com' } })
fireEvent.change(screen.getByPlaceholderText(/9876543210/i), { target: { value: '9876543210' } })
fireEvent.click(screen.getByLabelText(/I agree to the/i))
const alertMock = vi.spyOn(window, 'alert').mockImplementation(() => {})
fireEvent.click(screen.getByRole('button', { name: /Create Account/i }))
expect(await screen.findByText(/Welcome to Tradhox/i)).toBeInTheDocument()
alertMock.mockRestore()
})
})

View file

@ -8,6 +8,7 @@ import PricingPage from './components/pages/PricingPage';
import GrowBusinessPage from './components/pages/GrowBusinessPage';
import AboutPage from './components/pages/AboutPage';
import ContactPage from './components/pages/ContactPage';
import LoginPage from './components/pages/LoginPage';
import AuthForms from './components/pages/AuthForms';
import OnboardingWizard from './components/pages/OnboardingWizard';
import DashboardLayout from './components/dashboard/DashboardLayout';
@ -30,10 +31,11 @@ function AppRouter() {
{currentPage === 'how-it-works' && <HowItWorksPage />}
{currentPage === 'pricing' && <PricingPage />}
{currentPage === 'grow-business' && <GrowBusinessPage />}
{currentPage === 'signup' && <AuthForms />}
{currentPage === 'profile-completion' && <OnboardingWizard />}
{currentPage === 'about' && <AboutPage />}
{currentPage === 'contact' && <ContactPage />}
{(currentPage === 'login' || currentPage === 'signup') && <AuthForms />}
{currentPage === 'login' && <LoginPage />}
</main>
<Footer />
</div>

View file

@ -10,122 +10,81 @@ export default function Footer() {
};
return (
<footer className="trad-footer py-6 px-4" style={{ backgroundColor: 'var(--trad-footer-bg)', color: '#ffffff', borderTop: '1px solid #5a1420' }}>
<footer className="custom-footer" style={{ backgroundColor: '#791B2C', color: '#ffffff', padding: '3.5rem 2rem 2rem 2rem' }}>
<div className="container is-max-widescreen">
<div className="columns is-variable is-6">
{/* Brand & Mission */}
<div className="column is-4 trad-footer-brand">
<h4 className="font-serif-trad" style={{ color: '#ffffff', fontSize: '1.65rem', fontWeight: 800, letterSpacing: '0.04em', marginBottom: '0.35rem' }}>
<div className="columns is-multiline">
{/* Brand Column */}
<div className="column is-4-widescreen is-12-mobile mb-4">
<div className="footer-brand-title" style={{ color: '#ffffff', fontSize: '1.35rem', fontWeight: 800, letterSpacing: '0.5px', marginBottom: '0.4rem' }}>
TRADHOX
</h4>
<p style={{ color: '#f5d5d8', fontSize: '0.75rem', textTransform: 'uppercase', letterSpacing: '0.14em', fontWeight: 700, marginBottom: '1rem' }}>
FROM MAKERS TO THE WORLD.
</p>
<p style={{ color: '#e5e2e1', fontSize: '0.9rem', lineHeight: 1.65, maxWidth: '340px' }}>
Empowering verified Indian craftsmanship and creative makers with seamless nationwide commerce, transparent weekly payouts, and cultural storytelling.
</p>
<div className="is-flex is-align-items-center mt-4" style={{ gap: '1rem' }}>
<span className="tag is-dark is-rounded" style={{ backgroundColor: '#57131e', color: '#ffdee2', fontSize: '0.75rem' }}>
<i className="fa-solid fa-shield-halved mr-1"></i> AEO &amp; GI Verified
</span>
<span className="tag is-dark is-rounded" style={{ backgroundColor: '#57131e', color: '#ffdee2', fontSize: '0.75rem' }}>
<i className="fa-solid fa-truck-fast mr-1"></i> 15,000+ Pincodes
</span>
</div>
<div className="footer-brand-subtitle" style={{ fontSize: '0.76rem', letterSpacing: '1.2px', textTransform: 'uppercase', color: '#E2D3D5', fontWeight: 700, marginBottom: '0.85rem' }}>
FROM MAKERS TO THE WORLD.
</div>
<p className="footer-brand-desc" style={{ fontSize: '0.83rem', lineHeight: 1.55, color: '#D9C9CB', maxWidth: '340px' }}>
Empowering verified Indian craftsmanship and creative makers with seamless nationwide commerce, transparent payouts, and cultural storytelling.
</p>
</div>
{/* Quick Links */}
<div className="column is-2 is-offset-1">
<h5 style={{ color: '#ffffff', fontSize: '0.8rem', fontWeight: 700, textTransform: 'uppercase', letterSpacing: '0.12em', marginBottom: '1.25rem' }}>
Quick Links
</h5>
<ul style={{ listStyle: 'none', paddingLeft: 0, margin: 0 }}>
<li className="mb-2">
<a className="trad-footer-link" onClick={() => handleNav('home')}>Home</a>
</li>
<li className="mb-2">
<a className="trad-footer-link" onClick={() => handleNav('how-it-works')}>How it works</a>
</li>
<li className="mb-2">
<a className="trad-footer-link" onClick={() => handleNav('pricing')}>Pricing &amp; Fees</a>
</li>
<li className="mb-2">
<a className="trad-footer-link" onClick={() => handleNav('grow-business')}>Grow your business</a>
</li>
<li className="mb-2">
<a className="trad-footer-link" onClick={() => handleNav('signup')}>Register as Seller</a>
</li>
<div className="column is-2-widescreen is-6-mobile mb-4">
<div className="footer-col-header" style={{ color: '#ffffff', fontSize: '0.84rem', fontWeight: 700, letterSpacing: '0.8px', textTransform: 'uppercase', marginBottom: '1rem' }}>
Quick links
</div>
<ul className="footer-links-list" style={{ listStyle: 'none', padding: 0, margin: 0 }}>
<li className="mb-2"><a onClick={() => handleNav('how-it-works')} style={{ color: '#E0D2D4', cursor: 'pointer', fontSize: '0.85rem' }}>How it works</a></li>
<li className="mb-2"><a onClick={() => handleNav('pricing')} style={{ color: '#E0D2D4', cursor: 'pointer', fontSize: '0.85rem' }}>Pricing</a></li>
<li className="mb-2"><a onClick={() => handleNav('signup')} style={{ color: '#E0D2D4', cursor: 'pointer', fontSize: '0.85rem' }}>Register</a></li>
<li className="mb-2"><a onClick={() => handleNav('grow-business')} style={{ color: '#E0D2D4', cursor: 'pointer', fontSize: '0.85rem' }}>Grow your business</a></li>
</ul>
</div>
{/* Seller Support */}
<div className="column is-2">
<h5 style={{ color: '#ffffff', fontSize: '0.8rem', fontWeight: 700, textTransform: 'uppercase', letterSpacing: '0.12em', marginBottom: '1.25rem' }}>
Support &amp; Trust
</h5>
<ul style={{ listStyle: 'none', paddingLeft: 0, margin: 0 }}>
<li className="mb-2">
<a className="trad-footer-link" onClick={() => handleNav('contact')}>Artisan Help Desk</a>
</li>
<li className="mb-2">
<a className="trad-footer-link" onClick={() => handleNav('about')}>About TRADHOX</a>
</li>
<li className="mb-2">
<a className="trad-footer-link" href="#logistics">Logistics Guidelines</a>
</li>
<li className="mb-2">
<a className="trad-footer-link" href="#gi-tag">GI Craft Certification</a>
</li>
<li className="mb-2">
<a className="trad-footer-link" onClick={() => handleNav('login')}>Seller Login</a>
</li>
{/* Company */}
<div className="column is-2-widescreen is-6-mobile mb-4">
<div className="footer-col-header" style={{ color: '#ffffff', fontSize: '0.84rem', fontWeight: 700, letterSpacing: '0.8px', textTransform: 'uppercase', marginBottom: '1rem' }}>
Company
</div>
<ul className="footer-links-list" style={{ listStyle: 'none', padding: 0, margin: 0 }}>
<li className="mb-2"><a onClick={() => handleNav('about')} style={{ color: '#E0D2D4', cursor: 'pointer', fontSize: '0.85rem' }}>About</a></li>
<li className="mb-2"><a onClick={() => handleNav('contact')} style={{ color: '#E0D2D4', cursor: 'pointer', fontSize: '0.85rem' }}>Contact</a></li>
<li className="mb-2"><a onClick={() => handleNav('grow-business')} style={{ color: '#E0D2D4', cursor: 'pointer', fontSize: '0.85rem' }}>Grow your business</a></li>
</ul>
</div>
{/* Contact & Hours */}
<div className="column is-3">
<h5 style={{ color: '#ffffff', fontSize: '0.8rem', fontWeight: 700, textTransform: 'uppercase', letterSpacing: '0.12em', marginBottom: '1.25rem' }}>
Artisan Helpline
</h5>
<p style={{ color: '#e5e2e1', fontSize: '0.875rem', marginBottom: '0.5rem' }}>
<i className="fa-solid fa-phone mr-2" style={{ color: '#d8aa76' }}></i> 1800-TRADHOX (Toll-Free)
</p>
<p style={{ color: '#e5e2e1', fontSize: '0.875rem', marginBottom: '0.5rem' }}>
<i className="fa-solid fa-envelope mr-2" style={{ color: '#d8aa76' }}></i> sellers@tradhox.com
</p>
<p style={{ color: '#b9a5a7', fontSize: '0.75rem', marginTop: '0.75rem' }}>
Dedicated support available Mon - Sat: 9:00 AM - 7:00 PM IST
</p>
{/* Policies */}
<div className="column is-2-widescreen is-6-mobile mb-4">
<div className="footer-col-header" style={{ color: '#ffffff', fontSize: '0.84rem', fontWeight: 700, letterSpacing: '0.8px', textTransform: 'uppercase', marginBottom: '1rem' }}>
Policies
</div>
<ul className="footer-links-list" style={{ listStyle: 'none', padding: 0, margin: 0 }}>
<li className="mb-2"><a href="#privacy" style={{ color: '#E0D2D4', fontSize: '0.85rem' }}>Privacy policy</a></li>
<li className="mb-2"><a href="#terms" style={{ color: '#E0D2D4', fontSize: '0.85rem' }}>Terms of service</a></li>
<li className="mb-2"><a href="#returns" style={{ color: '#E0D2D4', fontSize: '0.85rem' }}>Returns &amp; refunds</a></li>
</ul>
</div>
{/* Connect */}
<div className="column is-2-widescreen is-6-mobile mb-4">
<div className="footer-col-header" style={{ color: '#ffffff', fontSize: '0.84rem', fontWeight: 700, letterSpacing: '0.8px', textTransform: 'uppercase', marginBottom: '1rem' }}>
Connect
</div>
<ul className="footer-links-list" style={{ listStyle: 'none', padding: 0, margin: 0 }}>
<li className="mb-2"><a href="#instagram" style={{ color: '#E0D2D4', fontSize: '0.85rem', display: 'flex', alignItems: 'center', gap: '0.5rem' }}><i className="fa-brands fa-instagram"></i> Instagram</a></li>
<li className="mb-2"><a href="#facebook" style={{ color: '#E0D2D4', fontSize: '0.85rem', display: 'flex', alignItems: 'center', gap: '0.5rem' }}><i className="fa-brands fa-facebook-f"></i> Facebook</a></li>
<li className="mb-2"><a href="#youtube" style={{ color: '#E0D2D4', fontSize: '0.85rem', display: 'flex', alignItems: 'center', gap: '0.5rem' }}><i className="fa-brands fa-youtube"></i> YouTube</a></li>
</ul>
</div>
</div>
<hr style={{ backgroundColor: 'rgba(255,255,255,0.12)', margin: '2rem 0 1.5rem 0' }} />
{/* Bottom divider */}
<div style={{ height: '1px', backgroundColor: 'rgba(255, 255, 255, 0.15)', margin: '2.5rem 0 1.5rem 0' }}></div>
<div className="is-flex is-justify-content-between is-align-items-center is-flex-wrap-wrap" style={{ gap: '1rem' }}>
<p style={{ color: '#c5b7b9', fontSize: '0.82rem', margin: 0 }}>
© 2026 TRADHOX Central. All rights reserved. Celebrating authentic heritage craft across India.
</p>
<div className="is-flex" style={{ gap: '1.5rem' }}>
<a href="#" className="trad-footer-link" style={{ fontSize: '0.82rem' }}>Privacy Policy</a>
<a href="#" className="trad-footer-link" style={{ fontSize: '0.82rem' }}>Terms of Service</a>
<a href="#" className="trad-footer-link" style={{ fontSize: '0.82rem' }}>Seller Agreement</a>
</div>
{/* Bottom flex */}
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', fontSize: '0.8rem', color: '#D4C3C5', flexWrap: 'wrap', gap: '0.75rem' }}>
<div>© 2026 TRADHOX Inc. All rights reserved. Empowering verified Indian craftsmanship worldwide.</div>
<div>Proudly designed for makers and cultural guardians.</div>
</div>
</div>
<style>{`
.trad-footer-link {
color: #e7dcd9 !important;
text-decoration: none;
cursor: pointer;
font-size: 0.875rem;
transition: color 0.15s ease;
}
.trad-footer-link:hover {
color: #ffffff !important;
text-decoration: underline;
}
`}</style>
</footer>
);
}

View file

@ -97,11 +97,11 @@ export default function Header() {
Login
</a>
<a
className="button is-rounded has-text-weight-bold px-5"
className="button is-rounded has-text-weight-bold"
onClick={() => handleNav('signup')}
style={{ backgroundColor: 'var(--trad-maroon)', color: '#ffffff', border: 'none', transition: 'all 0.2s' }}
style={{ border: '1.5px solid #791B2C', color: '#791B2C', background: 'transparent', borderRadius: '9999px', padding: '6px 20px', fontWeight: 600, fontSize: '0.9rem', display: 'inline-flex', alignItems: 'center', transition: 'all 0.2s' }}
>
Start Selling
Become a seller
</a>
</>
)}

View file

@ -10,7 +10,7 @@ export default function AboutPage() {
<section className="hero is-large" style={{ position: 'relative', overflow: 'hidden', minHeight: '800px' }}>
<div style={{
position: 'absolute', top: 0, left: 0, right: 0, bottom: 0,
backgroundImage: "url('https://lh3.googleusercontent.com/aida-public/AB6AXuA5mjm6T9CY7j2AtbFE_jEFFkhOzCmc_eKwvgj0hHVKV6AoVKeAf8ZfBnnz4sSYkdzX5gyzlk-pGufTtwpJN5MhYgDAIezV1yaDN8ANw66nZ5kk40-GGDiVWp3eGiPJZ4mIuL_aJp6O1TqJsQihFvPZyfj5VgjH4IQivXEltdrAAUfKSMdbWgNHLi3SP2X5uLF6Xc_gDyYs-tOepA8IuU6_1Q9wcaSebXAQOQhAQAPW7wVcUFGY7crerw')",
backgroundImage: "url('/images/about-hero.jpg')",
backgroundSize: 'cover',
backgroundPosition: 'center',
zIndex: 0

View file

@ -1,240 +1,303 @@
import React, { useState } from 'react';
import { useSeller } from '../../context/SellerContext';
const ARTISAN_IMAGE = "https://lh3.googleusercontent.com/aida-public/AB6AXuAAFsGHQxH4paIeyYZq8omfEOk4T6ZEJqZYRodaOcQHD0LtVHFHgCIbibIROjn374aCnXLV8lMu_a4PAiB2hSlSCweYGsHwS5Yo_qSy1nNAZPLlYCBJAm4rGsYoeyu_UDpTNR8eQjl_nUnYEjlNe_bS3LYk8VhaJnlE2uy_LsQmUuW-JWNYEqV9vbFeeG1VBgLjqUD7HixjvwxkWx9prT2WTwoTN0fOnHqxndcVNs1jPMAkFLc2y9082g";
const SIGNUP_IMAGE = "https://lh3.googleusercontent.com/aida-public/AB6AXuCltIMM8YbcYMs4QPFOFVNm_ieJNxla5TaKcrFw3or4efQU-wz4mZtq2sWHFvLVv-DN1XfSlcJQUW2BCVrNiTUFnNtUoxVqPqGYiuWoaGFd_GvpHLctklxC9UMMOZOEpSQqEymQUBvpKbz6TNLgcR12JSCy4JZc3VOPKEW4xFquW6T1dSTrTJWcdo7ONH70XsdK4FT6FVZJIkAlD_f4b5iJufeGHaYGTqm4Y7OgBEorWRTGrciNeKxxDA";
const P = '#6b1a2c';
const P_DARK = '#4d0218';
const BORDER = '#D9C5B2';
const BG = '#fbf9f8';
const MUTED = '#554244';
const SIGNUP_IMAGE = "/images/signup-weaver.jpg";
export default function AuthForms() {
const {
currentPage, navigateTo,
activeTab, setActiveTab,
email, setEmail,
password, setPassword,
confirmPassword, setConfirmPassword,
phone, setPhone,
policyAccepted, setPolicyAccepted,
handleLoginSubmit, handleRegisterSubmit,
showLoginPass, setShowLoginPass,
handleRegisterSubmit,
showSignupPass, setShowSignupPass,
setCurrentPage,
} = useSeller();
const isLogin = currentPage === 'login';
const [focused, setFocused] = useState('');
const inp = (field: string): React.CSSProperties => ({
width: '100%', background: '#fff', border: `1px solid ${focused === field ? P : BORDER}`,
boxShadow: focused === field ? `0 0 0 1px ${P}` : 'none',
borderRadius: '4px', padding: '12px 16px',
fontFamily: 'Work Sans, sans-serif', fontSize: '16px', color: '#1b1c1c', outline: 'none',
transition: 'border-color 0.2s',
});
const lbl: React.CSSProperties = {
display: 'block', fontFamily: 'Work Sans, sans-serif', fontSize: '12px',
fontWeight: 600, letterSpacing: '0.1em', textTransform: 'uppercase', color: MUTED, marginBottom: '6px',
};
const btn: React.CSSProperties = {
width: '100%', background: P, color: '#fff', border: 'none', borderRadius: '4px',
padding: '12px 16px', fontFamily: 'Work Sans, sans-serif', fontSize: '14px', fontWeight: 600,
cursor: 'pointer', display: 'flex', alignItems: 'center', justifyContent: 'center',
gap: '8px', marginTop: '8px',
};
const switchPage = (tab: 'login' | 'register') => {
setActiveTab(tab);
navigateTo(tab === 'login' ? 'login' : 'signup');
};
const [role, setRole] = useState<'seller' | 'buyer'>('seller');
const [fullName, setFullName] = useState('');
return (
<div style={{ minHeight: '100vh', background: BG, display: 'flex', flexDirection: 'column' }}>
<header style={{ padding: '20px 32px', borderBottom: '1px solid #e4e2e2', display: 'flex', justifyContent: 'center' }}>
<a href="#" onClick={e => { e.preventDefault(); navigateTo('home'); }}
style={{ fontFamily: 'Libre Caslon Text, serif', fontSize: '26px', fontWeight: 700, color: P_DARK, textDecoration: 'none' }}>
Tradhox
</a>
</header>
<div className="py-6 px-4" style={{ minHeight: 'calc(100vh - 120px)', backgroundColor: 'var(--trad-bg)', display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
<div className="container" style={{ maxWidth: '1000px', width: '100%' }}>
{/* Main Split Card matching Stitch Join_Tradhox */}
<div
className="signup-card-shell"
style={{
display: 'grid',
gridTemplateColumns: 'minmax(0, 1fr) minmax(0, 1fr)',
backgroundColor: '#ffffff',
borderRadius: '20px',
border: '1px solid #E5E0DC',
boxShadow: '0 8px 30px rgba(107, 26, 44, 0.06)',
overflow: 'hidden',
minHeight: '620px',
}}
>
{/* Left: Form Section */}
<div style={{ padding: '2.75rem 2.5rem', display: 'flex', flexDirection: 'column', justifyContent: 'center' }}>
<div style={{ marginBottom: '1.5rem' }}>
<span style={{ fontSize: '0.78rem', fontWeight: 700, textTransform: 'uppercase', letterSpacing: '0.1em', color: '#791B2C' }}>
TRADHOX REGISTRATION
</span>
<h1 style={{ fontSize: '1.85rem', fontWeight: 800, color: '#1A1A1A', letterSpacing: '-0.02em', marginTop: '0.25rem', marginBottom: '0.5rem' }}>
Create an Account
</h1>
<p style={{ fontSize: '0.9rem', color: '#5F5E5A', lineHeight: 1.5 }}>
Join our community to preserve and support authentic cultural craftsmanship.
</p>
</div>
<main style={{ flexGrow: 1, display: 'flex', alignItems: 'center', justifyContent: 'center', padding: '48px 24px' }}>
<div style={{
width: '100%', maxWidth: '900px', display: 'grid', gridTemplateColumns: '1fr 1fr',
background: '#fff', borderRadius: '12px', border: `1px solid ${BORDER}`,
boxShadow: '0 4px 20px rgba(107,26,44,0.07)', overflow: 'hidden',
}}>
<form onSubmit={handleRegisterSubmit} style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}>
{/* Role Toggle */}
<div style={{ display: 'flex', backgroundColor: '#F6F3F2', borderRadius: '10px', padding: '4px', border: '1px solid #E5E0DC', marginBottom: '0.5rem' }}>
<button
type="button"
onClick={() => setRole('seller')}
style={{
flex: 1,
padding: '8px 12px',
borderRadius: '8px',
border: 'none',
cursor: 'pointer',
fontSize: '0.84rem',
fontWeight: role === 'seller' ? 700 : 500,
backgroundColor: role === 'seller' ? '#ffffff' : 'transparent',
color: role === 'seller' ? '#791B2C' : '#5F5E5A',
boxShadow: role === 'seller' ? '0 1px 3px rgba(0,0,0,0.08)' : 'none',
transition: 'all 0.15s ease'
}}
>
<i className="fa-solid fa-store mr-1" style={{ fontSize: '0.78rem' }}></i> Artisan Seller
</button>
<button
type="button"
onClick={() => setRole('buyer')}
style={{
flex: 1,
padding: '8px 12px',
borderRadius: '8px',
border: 'none',
cursor: 'pointer',
fontSize: '0.84rem',
fontWeight: role === 'buyer' ? 700 : 500,
backgroundColor: role === 'buyer' ? '#ffffff' : 'transparent',
color: role === 'buyer' ? '#791B2C' : '#5F5E5A',
boxShadow: role === 'buyer' ? '0 1px 3px rgba(0,0,0,0.08)' : 'none',
transition: 'all 0.15s ease'
}}
>
<i className="fa-solid fa-heart mr-1" style={{ fontSize: '0.78rem' }}></i> Craft Lover / Buyer
</button>
</div>
{/* LEFT: FORM */}
<div style={{ padding: '48px 44px', display: 'flex', flexDirection: 'column', justifyContent: 'center' }}>
{isLogin ? (
<>
<h1 style={{ fontFamily: 'Libre Caslon Text, serif', fontSize: '26px', fontWeight: 600, color: '#1b1c1c', marginBottom: '6px' }}>Sign In</h1>
<p style={{ fontFamily: 'Work Sans, sans-serif', fontSize: '15px', color: MUTED, marginBottom: '28px' }}>
Access your artisan marketplace account.
</p>
{/* Full Name */}
<div>
<label style={{ display: 'block', fontSize: '0.82rem', fontWeight: 600, color: '#333333', marginBottom: '0.35rem' }} htmlFor="r-name">
Full Name
</label>
<input
id="r-name"
type="text"
placeholder="Enter your full name"
value={fullName}
onChange={e => setFullName(e.target.value)}
style={{ width: '100%', border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', padding: '0 14px', fontSize: '0.9rem', outline: 'none' }}
/>
</div>
<form onSubmit={handleLoginSubmit} style={{ display: 'flex', flexDirection: 'column', gap: '16px' }}>
<div>
<label style={lbl} htmlFor="l-email">Email or Phone</label>
<div style={{ position: 'relative' }}>
<span className="material-symbols-outlined" style={{ position: 'absolute', left: '12px', top: '50%', transform: 'translateY(-50%)', color: MUTED, fontSize: '20px', pointerEvents: 'none' }}>mail</span>
<input id="l-email" type="text" placeholder="you@example.com" value={email}
onChange={e => setEmail(e.target.value)}
onFocus={() => setFocused('l-email')} onBlur={() => setFocused('')}
style={{ ...inp('l-email'), paddingLeft: '42px' }} />
</div>
</div>
{/* Email Address */}
<div>
<label style={{ display: 'block', fontSize: '0.82rem', fontWeight: 600, color: '#333333', marginBottom: '0.35rem' }} htmlFor="r-email">
Email Address
</label>
<input
id="r-email"
type="email"
placeholder="Enter your email"
value={email}
onChange={e => setEmail(e.target.value)}
required
style={{ width: '100%', border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', padding: '0 14px', fontSize: '0.9rem', outline: 'none' }}
/>
</div>
<div>
<div style={{ display: 'flex', justifyContent: 'space-between', marginBottom: '6px' }}>
<label style={{ ...lbl, marginBottom: 0 }} htmlFor="l-pass">Password</label>
<a href="#" style={{ fontSize: '13px', color: P, fontFamily: 'Work Sans, sans-serif', textDecoration: 'none' }}>Forgot Password?</a>
</div>
<div style={{ position: 'relative' }}>
<span className="material-symbols-outlined" style={{ position: 'absolute', left: '12px', top: '50%', transform: 'translateY(-50%)', color: MUTED, fontSize: '20px', pointerEvents: 'none' }}>lock</span>
<input id="l-pass" type={showLoginPass ? 'text' : 'password'} placeholder="••••••••" value={password}
onChange={e => setPassword(e.target.value)}
onFocus={() => setFocused('l-pass')} onBlur={() => setFocused('')}
style={{ ...inp('l-pass'), paddingLeft: '42px', paddingRight: '42px' }} />
<button type="button" onClick={() => setShowLoginPass(!showLoginPass)}
style={{ position: 'absolute', right: '12px', top: '50%', transform: 'translateY(-50%)', background: 'none', border: 'none', cursor: 'pointer', color: MUTED, display: 'flex' }}>
<span className="material-symbols-outlined" style={{ fontSize: '20px' }}>{showLoginPass ? 'visibility' : 'visibility_off'}</span>
</button>
</div>
</div>
{/* Phone Number */}
<div>
<label style={{ display: 'block', fontSize: '0.82rem', fontWeight: 600, color: '#333333', marginBottom: '0.35rem' }} htmlFor="r-phone">
Phone Number
</label>
<input
id="r-phone"
type="tel"
placeholder="e.g. 9876543210"
value={phone}
onChange={e => setPhone(e.target.value)}
required
maxLength={10}
style={{ width: '100%', border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', padding: '0 14px', fontSize: '0.9rem', outline: 'none' }}
/>
</div>
<button type="submit" id="login-submit" style={btn}
onMouseEnter={e => (e.currentTarget.style.background = P_DARK)}
onMouseLeave={e => (e.currentTarget.style.background = P)}>
Sign In <span className="material-symbols-outlined" style={{ fontSize: '18px' }}>arrow_forward</span>
{/* Password */}
<div>
<label style={{ display: 'block', fontSize: '0.82rem', fontWeight: 600, color: '#333333', marginBottom: '0.35rem' }} htmlFor="r-pass">
Password
</label>
<div style={{ position: 'relative' }}>
<input
id="r-pass"
type={showSignupPass ? 'text' : 'password'}
placeholder="Create a password (optional)"
value={password}
onChange={e => setPassword(e.target.value)}
style={{ width: '100%', border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', padding: '0 40px 0 14px', fontSize: '0.9rem', outline: 'none' }}
/>
<button
type="button"
onClick={() => setShowSignupPass(!showSignupPass)}
style={{ position: 'absolute', right: '12px', top: '50%', transform: 'translateY(-50%)', background: 'none', border: 'none', cursor: 'pointer', color: '#8A8A82' }}
>
<i className={`fa-solid ${showSignupPass ? 'fa-eye-slash' : 'fa-eye'}`}></i>
</button>
</form>
<div style={{ display: 'flex', alignItems: 'center', margin: '20px 0' }}>
<div style={{ flexGrow: 1, borderTop: `1px solid ${BORDER}` }} />
<span style={{ padding: '0 12px', color: MUTED, fontSize: '13px', fontFamily: 'Work Sans, sans-serif' }}>or</span>
<div style={{ flexGrow: 1, borderTop: `1px solid ${BORDER}` }} />
</div>
</div>
<p style={{ textAlign: 'center', fontFamily: 'Work Sans, sans-serif', fontSize: '15px', color: MUTED }}>
New to Tradhox?{' '}
<a href="#" onClick={e => { e.preventDefault(); switchPage('register'); }}
style={{ color: P, fontWeight: 600, textDecoration: 'none' }}>Create an account</a>
</p>
</>
) : (
<>
<a href="#" onClick={e => { e.preventDefault(); navigateTo('home'); }}
style={{ fontFamily: 'Libre Caslon Text, serif', fontSize: '20px', fontWeight: 700, color: P_DARK, textDecoration: 'none', display: 'inline-block', marginBottom: '10px' }}>
Tradhox
</a>
<h1 style={{ fontFamily: 'Libre Caslon Text, serif', fontSize: '28px', fontWeight: 700, color: '#1b1c1c', marginBottom: '6px' }}>Create an Account</h1>
<p style={{ fontFamily: 'Work Sans, sans-serif', fontSize: '15px', color: MUTED, marginBottom: '24px' }}>
Join our community to preserve and support cultural craftsmanship.
</p>
{/* Confirm Password */}
<div>
<label style={{ display: 'block', fontSize: '0.82rem', fontWeight: 600, color: '#333333', marginBottom: '0.35rem' }} htmlFor="r-confirm">
Confirm Password
</label>
<input
id="r-confirm"
type="password"
placeholder="Repeat your password (optional)"
value={confirmPassword}
onChange={e => setConfirmPassword(e.target.value)}
style={{ width: '100%', border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', padding: '0 14px', fontSize: '0.9rem', outline: 'none' }}
/>
</div>
<form onSubmit={handleRegisterSubmit} style={{ display: 'flex', flexDirection: 'column', gap: '14px' }}>
<div>
<label style={lbl} htmlFor="r-email">Email Address</label>
<input id="r-email" type="email" placeholder="Enter your email" value={email}
onChange={e => setEmail(e.target.value)}
onFocus={() => setFocused('r-email')} onBlur={() => setFocused('')}
style={inp('r-email')} />
</div>
{/* Terms Checkbox */}
<div style={{ display: 'flex', alignItems: 'flex-start', gap: '0.5rem', marginTop: '0.25rem' }}>
<input
type="checkbox"
id="terms"
checked={policyAccepted}
onChange={e => setPolicyAccepted(e.target.checked)}
style={{ marginTop: '3px', accentColor: '#791B2C', width: '16px', height: '16px', cursor: 'pointer' }}
/>
<label htmlFor="terms" style={{ fontSize: '0.82rem', color: '#555450', cursor: 'pointer', lineHeight: 1.4 }}>
I agree to the <a href="#terms" style={{ color: '#791B2C', fontWeight: 600, textDecoration: 'none' }}>Terms of Service</a> and <a href="#privacy" style={{ color: '#791B2C', fontWeight: 600, textDecoration: 'none' }}>Privacy Policy</a>.
</label>
</div>
<div>
<label style={lbl} htmlFor="r-phone">Phone Number</label>
<input id="r-phone" type="tel" placeholder="e.g. 9876543210" value={phone}
onChange={e => setPhone(e.target.value)}
onFocus={() => setFocused('r-phone')} onBlur={() => setFocused('')}
style={inp('r-phone')} />
</div>
{/* Submit CTA */}
<button
type="submit"
id="signup-submit"
style={{
width: '100%',
backgroundColor: '#791B2C',
color: '#ffffff',
border: 'none',
borderRadius: '8px',
height: '44px',
fontSize: '0.93rem',
fontWeight: 700,
cursor: 'pointer',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
gap: '0.5rem',
marginTop: '0.5rem',
boxShadow: '0 3px 8px rgba(121, 27, 44, 0.25)'
}}
>
Create Account <i className="fa-solid fa-arrow-right"></i>
</button>
</form>
<div>
<label style={lbl} htmlFor="r-pass">Password</label>
<div style={{ position: 'relative' }}>
<input id="r-pass" type={showSignupPass ? 'text' : 'password'} placeholder="Create a password" value={password}
onChange={e => setPassword(e.target.value)}
onFocus={() => setFocused('r-pass')} onBlur={() => setFocused('')}
style={{ ...inp('r-pass'), paddingRight: '42px' }} />
<button type="button" onClick={() => setShowSignupPass(!showSignupPass)}
style={{ position: 'absolute', right: '12px', top: '50%', transform: 'translateY(-50%)', background: 'none', border: 'none', cursor: 'pointer', color: MUTED, display: 'flex' }}>
<span className="material-symbols-outlined" style={{ fontSize: '20px' }}>{showSignupPass ? 'visibility' : 'visibility_off'}</span>
</button>
</div>
</div>
<div>
<label style={lbl} htmlFor="r-confirm">Confirm Password</label>
<input id="r-confirm" type="password" placeholder="Repeat your password" value={confirmPassword}
onChange={e => setConfirmPassword(e.target.value)}
onFocus={() => setFocused('r-confirm')} onBlur={() => setFocused('')}
style={inp('r-confirm')} />
</div>
<div style={{ display: 'flex', alignItems: 'flex-start', gap: '10px' }}>
<input type="checkbox" id="terms" checked={policyAccepted} onChange={e => setPolicyAccepted(e.target.checked)}
style={{ marginTop: '3px', accentColor: P, cursor: 'pointer' }} />
<label htmlFor="terms" style={{ fontFamily: 'Work Sans, sans-serif', fontSize: '13px', color: MUTED, cursor: 'pointer' }}>
I agree to the{' '}<a href="#" style={{ color: P, textDecoration: 'none' }}>Terms of Service</a>{' '}and{' '}<a href="#" style={{ color: P, textDecoration: 'none' }}>Privacy Policy</a>
</label>
</div>
<button type="submit" id="signup-submit" style={btn}
onMouseEnter={e => (e.currentTarget.style.background = P_DARK)}
onMouseLeave={e => (e.currentTarget.style.background = P)}>
Create Account <span className="material-symbols-outlined" style={{ fontSize: '18px' }}>arrow_forward</span>
</button>
</form>
<p style={{ marginTop: '20px', textAlign: 'center', fontFamily: 'Work Sans, sans-serif', fontSize: '15px', color: MUTED }}>
Already have an account?{' '}
<a href="#" onClick={e => { e.preventDefault(); switchPage('login'); }}
style={{ color: P, fontWeight: 600, textDecoration: 'none' }}>Sign In</a>
</p>
</>
)}
<p style={{ marginTop: '1.5rem', textAlign: 'center', fontSize: '0.86rem', color: '#5F5E5A' }}>
Already have an account?{' '}
<a
onClick={() => { setCurrentPage('login'); window.scrollTo(0, 0); }}
style={{ color: '#791B2C', fontWeight: 700, textDecoration: 'none', cursor: 'pointer' }}
>
Sign In
</a>
</p>
</div>
{/* RIGHT: IMAGE */}
<div style={{ position: 'relative', minHeight: '500px', overflow: 'hidden' }}>
<div style={{
position: 'absolute', inset: 0,
backgroundImage: `url('${isLogin ? ARTISAN_IMAGE : SIGNUP_IMAGE}')`,
backgroundSize: 'cover', backgroundPosition: 'center',
}} />
<div style={{
position: 'absolute', inset: 0,
background: 'linear-gradient(to top, rgba(77,2,24,0.88) 0%, rgba(77,2,24,0.25) 55%, transparent 100%)',
display: 'flex', flexDirection: 'column', justifyContent: 'flex-end', padding: '40px',
}}>
{isLogin ? (
<>
<h2 style={{ fontFamily: 'Libre Caslon Text, serif', fontSize: '26px', fontWeight: 700, color: '#fff', marginBottom: '8px' }}>
Welcome to Heritage
</h2>
<p style={{ fontFamily: 'Work Sans, sans-serif', fontSize: '15px', color: 'rgba(255,178,187,0.9)' }}>
Preserving cultural craftsmanship, one artisan at a time.
</p>
</>
) : (
<div style={{ background: 'rgba(255,255,255,0.1)', backdropFilter: 'blur(8px)', borderRadius: '8px', border: '1px solid rgba(255,255,255,0.2)', padding: '24px' }}>
<span className="material-symbols-outlined" style={{ fontSize: '36px', color: '#fff', marginBottom: '12px', display: 'block', fontVariationSettings: "'FILL' 1" }}>eco</span>
<blockquote style={{ fontFamily: 'Libre Caslon Text, serif', fontSize: '17px', fontWeight: 600, color: '#fff', marginBottom: '10px', fontStyle: 'italic', lineHeight: 1.5 }}>
"Preserving our cultural heritage, one stitch at a time. Tradhox connects true artisans with a world that values authenticity."
</blockquote>
<p style={{ fontFamily: 'Work Sans, sans-serif', fontSize: '14px', color: 'rgba(255,255,255,0.7)' }}> The Makers Story</p>
{/* Right: Artisan Heritage Showcase */}
<div
className="is-hidden-mobile"
style={{
position: 'relative',
minHeight: '560px',
backgroundColor: '#4D0218',
overflow: 'hidden',
}}
>
<img
src={SIGNUP_IMAGE}
alt="Indian artisan weaving vibrant traditional textile on handloom"
style={{
position: 'absolute',
inset: 0,
width: '100%',
height: '100%',
objectFit: 'cover',
opacity: 0.85
}}
/>
{/* Gradient Overlay */}
<div
style={{
position: 'absolute',
inset: 0,
background: 'linear-gradient(to top, rgba(77, 2, 24, 0.92) 0%, rgba(77, 2, 24, 0.35) 60%, transparent 100%)',
display: 'flex',
flexDirection: 'column',
justifyContent: 'flex-end',
padding: '2.5rem'
}}
>
{/* Frosted Glass Blockquote */}
<div
style={{
backgroundColor: 'rgba(255, 255, 255, 0.12)',
backdropFilter: 'blur(10px)',
WebkitBackdropFilter: 'blur(10px)',
borderRadius: '12px',
border: '1px solid rgba(255, 255, 255, 0.25)',
padding: '1.5rem'
}}
>
<div style={{ color: '#fed7db', fontSize: '1.5rem', marginBottom: '0.5rem' }}>
<i className="fa-solid fa-leaf"></i>
</div>
)}
<blockquote style={{ fontSize: '1rem', fontWeight: 600, color: '#ffffff', lineHeight: 1.5, marginBottom: '0.75rem', fontStyle: 'italic' }}>
"Preserving our cultural heritage, one stitch at a time. Tradhox connects true artisans with a world that values authenticity."
</blockquote>
<p style={{ fontSize: '0.8rem', color: 'rgba(255, 255, 255, 0.8)', margin: 0, fontWeight: 500 }}>
The Makers Story
</p>
</div>
</div>
</div>
</div>
</main>
</div>
<style>{`
@media (max-width: 768px) {
.signup-card-shell {
grid-template-columns: 1fr !important;
}
}
`}</style>
</div>
);
}

View file

@ -31,94 +31,176 @@ export default function LoginPage() {
alert('Please enter the OTP');
return;
}
// Simulate login
handleLoginSubmit(e);
};
return (
<div className="seller-login-page py-6 px-4" style={{ minHeight: 'calc(100vh - 120px)', backgroundColor: 'var(--trad-bg)', display: 'flex', alignItems: 'center' }}>
<div className="container is-max-desktop">
<div className="box p-0 overflow-hidden" style={{ borderRadius: '16px', border: '1px solid #e7ded9', boxShadow: '0 8px 30px rgba(103,27,38,0.08)' }}>
<div className="columns is-gapless mb-0">
{/* Left Column: Artisan Branding Panel */}
<div className="column is-5 is-hidden-touch p-6 is-flex is-flex-direction-column is-justify-content-between" style={{ background: 'linear-gradient(135deg, var(--trad-maroon) 0%, var(--trad-burgundy) 100%)', color: '#ffffff' }}>
<div>
<span className="tag is-rounded is-small mb-4" style={{ backgroundColor: 'rgba(255,255,255,0.15)', color: '#ffffff', fontWeight: 700, letterSpacing: '0.08em' }}>
SELLER HUB
</span>
<h2 className="title is-2 font-serif-trad mb-4" style={{ color: '#ffffff', lineHeight: 1.3 }}>
Beginning our journey to connect authentic Indian artisans with the world.
</h2>
<p className="subtitle is-6 mb-6" style={{ color: '#fed7db', lineHeight: 1.6 }}>
Direct access to manage orders, inventory, weekly settlements, and cultural storytelling from one verified portal.
</p>
<div className="value-props mt-4">
<div className="is-flex is-align-items-center mb-4">
<div style={{ width: '28px', height: '28px', borderRadius: '50%', backgroundColor: 'rgba(255,255,255,0.2)', display: 'flex', alignItems: 'center', justifyContent: 'center', marginRight: '12px' }}>
<i className="fa-solid fa-check" style={{ color: '#ffffff', fontSize: '0.8rem' }}></i>
</div>
<span className="is-size-6 has-text-weight-medium">Zero registration &amp; zero listing fees</span>
</div>
<div className="is-flex is-align-items-center mb-4">
<div style={{ width: '28px', height: '28px', borderRadius: '50%', backgroundColor: 'rgba(255,255,255,0.2)', display: 'flex', alignItems: 'center', justifyContent: 'center', marginRight: '12px' }}>
<i className="fa-solid fa-check" style={{ color: '#ffffff', fontSize: '0.8rem' }}></i>
</div>
<span className="is-size-6 has-text-weight-medium">100% direct bank payouts on schedule</span>
</div>
<div className="is-flex is-align-items-center mb-4">
<div style={{ width: '28px', height: '28px', borderRadius: '50%', backgroundColor: 'rgba(255,255,255,0.2)', display: 'flex', alignItems: 'center', justifyContent: 'center', marginRight: '12px' }}>
<i className="fa-solid fa-check" style={{ color: '#ffffff', fontSize: '0.8rem' }}></i>
</div>
<span className="is-size-6 has-text-weight-medium">Pan-India delivery covering 15,000+ pin codes</span>
</div>
</div>
<div className="seller-login-page py-6 px-4" style={{ minHeight: 'calc(100vh - 120px)', backgroundColor: 'var(--trad-bg)', display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
<div className="container" style={{ maxWidth: '1080px', width: '100%' }}>
{/* Split Card Shell matching Stitch Screen 11 */}
<div
className="login-card-shell"
style={{
display: 'grid',
gridTemplateColumns: 'minmax(0, 5fr) minmax(0, 7fr)',
backgroundColor: '#ffffff',
borderRadius: '24px',
border: '1px solid #E5E0DC',
boxShadow: '0 12px 40px -10px rgba(0, 0, 0, 0.08)',
overflow: 'hidden',
minHeight: '620px'
}}
>
{/* Left Column: Inspiring Artisan Showcase & Value Prop */}
<div
className="artisan-showcase-panel is-hidden-mobile"
style={{
backgroundColor: '#FAF8F6',
borderRight: '1px solid #E5E0DC',
padding: '2.5rem',
display: 'flex',
flexDirection: 'column',
justifyContent: 'space-between',
minWidth: 0
}}
>
<div>
{/* Seller Hub Badge */}
<div style={{ display: 'inline-flex', alignItems: 'center', gap: '0.4rem', backgroundColor: '#FBECEE', color: '#791B2C', borderRadius: '9999px', padding: '4px 12px', fontSize: '0.75rem', fontWeight: 700, letterSpacing: '0.06em', textTransform: 'uppercase', marginBottom: '1rem' }}>
<i className="fa-solid fa-star" style={{ fontSize: '0.7rem' }}></i>
<span>Seller Hub</span>
</div>
<div className="mt-6 pt-4" style={{ borderTop: '1px solid rgba(255,255,255,0.15)' }}>
<p className="is-size-7" style={{ color: 'rgba(255,255,255,0.7)' }}>
Protected by 256-bit SSL encryption &amp; AEO certification standards.
</p>
{/* Title */}
<h2 style={{ fontSize: '1.45rem', fontWeight: 800, color: '#1A1A1A', lineHeight: 1.35, letterSpacing: '-0.02em', marginBottom: '1.25rem' }}>
Beginning our journey to connect authentic Indian artisans with the world.
</h2>
{/* 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="/images/login-potter.jpg"
alt="Indian artisan potter shaping handcrafted pottery"
style={{ width: '100%', height: '180px', objectFit: 'cover', display: 'block' }}
/>
</div>
{/* Value Props Checklist */}
<div style={{ display: 'flex', flexDirection: 'column', gap: '0.85rem' }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.75rem' }}>
<div style={{ width: '22px', height: '22px', borderRadius: '50%', backgroundColor: '#EBF7EE', color: '#1B7D36', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '0.7rem', flexShrink: 0, fontWeight: 700 }}>
<i className="fa-solid fa-check"></i>
</div>
<span style={{ fontSize: '0.88rem', fontWeight: 500, color: '#403B37' }}>Zero registration &amp; zero listing fees</span>
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.75rem' }}>
<div style={{ width: '22px', height: '22px', borderRadius: '50%', backgroundColor: '#EBF7EE', color: '#1B7D36', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '0.7rem', flexShrink: 0, fontWeight: 700 }}>
<i className="fa-solid fa-check"></i>
</div>
<span style={{ fontSize: '0.88rem', fontWeight: 500, color: '#403B37' }}>100% direct bank payouts on schedule</span>
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.75rem' }}>
<div style={{ width: '22px', height: '22px', borderRadius: '50%', backgroundColor: '#EBF7EE', color: '#1B7D36', display: 'flex', alignItems: 'center', justifyContent: 'center', fontSize: '0.7rem', flexShrink: 0, fontWeight: 700 }}>
<i className="fa-solid fa-check"></i>
</div>
<span style={{ fontSize: '0.88rem', fontWeight: 500, color: '#403B37' }}>Pan-India delivery covering 15,000+ pin codes</span>
</div>
</div>
</div>
{/* Right Column: Login Forms */}
<div className="column is-7 p-6 has-background-white is-flex is-flex-direction-column is-justify-content-center">
<div className="mb-5">
<span className="has-text-weight-bold is-uppercase" style={{ color: 'var(--trad-bronze)', letterSpacing: '0.1em', fontSize: '0.75rem' }}>
Seller ID Portal
</span>
<h1 className="title is-3 font-serif-trad mt-1 mb-2" style={{ color: 'var(--trad-maroon)' }}>
{/* Bottom Note */}
<div style={{ marginTop: '2rem', paddingTop: '1rem', borderTop: '1px solid #E5E0DC' }}>
<p style={{ fontSize: '0.75rem', color: '#8A8A82', margin: 0 }}>
Protected by 256-bit SSL encryption &amp; AEO certification standards.
</p>
</div>
</div>
{/* Right Column: Interactive Login Portal */}
<div
className="seller-login-panel"
style={{
backgroundColor: '#ffffff',
padding: '2.5rem 2.75rem',
display: 'flex',
flexDirection: 'column',
justifyContent: 'space-between',
minWidth: 0
}}
>
<div>
{/* Header Block */}
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '0.35rem' }}>
<h1 style={{ fontSize: '1.65rem', fontWeight: 800, color: '#4A0E18', letterSpacing: '-0.02em', margin: 0 }}>
Welcome back, Maker
</h1>
<p className="has-text-grey is-size-6">
Access your dashboard, manage orders, and grow your authentic craft brand.
</p>
<span style={{ fontSize: '0.72rem', fontWeight: 700, textTransform: 'uppercase', letterSpacing: '0.08em', backgroundColor: '#F6F3F2', border: '1px solid #E5E0DC', color: '#5F5E5A', padding: '3px 8px', borderRadius: '6px' }}>
Seller ID Portal
</span>
</div>
<p style={{ fontSize: '0.88rem', color: '#5F5E5A', marginBottom: '1.75rem' }}>
Access your dashboard, manage orders, and grow your authentic craft brand.
</p>
{/* Login Method Tabs */}
<div className="tabs is-boxed mb-5">
<ul style={{ borderBottomColor: '#e7ded9' }}>
<li className={activeTab === 'email' ? 'is-active' : ''}>
<a onClick={() => setActiveTab('email')} className="has-text-weight-semibold">
<i className="fa-solid fa-envelope mr-2"></i> Email &amp; Password
</a>
</li>
<li className={activeTab === 'otp' ? 'is-active' : ''}>
<a onClick={() => setActiveTab('otp')} className="has-text-weight-semibold">
<i className="fa-solid fa-mobile-screen mr-2"></i> Mobile OTP Login
</a>
</li>
</ul>
<div style={{ display: 'flex', backgroundColor: '#F6F3F2', borderRadius: '10px', padding: '4px', border: '1px solid #E5E0DC', marginBottom: '1.5rem' }}>
<button
type="button"
onClick={() => setActiveTab('email')}
style={{
flex: 1,
padding: '8px 12px',
borderRadius: '8px',
border: 'none',
cursor: 'pointer',
fontSize: '0.84rem',
fontWeight: activeTab === 'email' ? 700 : 500,
backgroundColor: activeTab === 'email' ? '#ffffff' : 'transparent',
color: activeTab === 'email' ? '#1A1A1A' : '#5F5E5A',
boxShadow: activeTab === 'email' ? '0 1px 3px rgba(0,0,0,0.06)' : 'none',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
gap: '0.5rem',
transition: 'all 0.15s ease'
}}
>
<i className="fa-solid fa-envelope" style={{ color: activeTab === 'email' ? '#791B2C' : '#8A8A82' }}></i>
<span>Email &amp; Password</span>
</button>
<button
type="button"
onClick={() => setActiveTab('otp')}
style={{
flex: 1,
padding: '8px 12px',
borderRadius: '8px',
border: 'none',
cursor: 'pointer',
fontSize: '0.84rem',
fontWeight: activeTab === 'otp' ? 700 : 500,
backgroundColor: activeTab === 'otp' ? '#ffffff' : 'transparent',
color: activeTab === 'otp' ? '#1A1A1A' : '#5F5E5A',
boxShadow: activeTab === 'otp' ? '0 1px 3px rgba(0,0,0,0.06)' : 'none',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
gap: '0.5rem',
transition: 'all 0.15s ease'
}}
>
<i className="fa-solid fa-mobile-screen" style={{ color: activeTab === 'otp' ? '#791B2C' : '#8A8A82' }}></i>
<span>Mobile OTP Login</span>
</button>
</div>
{/* Tab 1: Email & Password Form */}
{/* Form Tab 1: Email & Password */}
{activeTab === 'email' ? (
<form onSubmit={handleLoginSubmit}>
<div className="field mb-4">
<label className="label is-size-7 is-uppercase has-text-grey" htmlFor="seller-email">
<label className="label" htmlFor="seller-email" style={{ fontSize: '0.82rem', fontWeight: 600, color: '#333333', marginBottom: '0.35rem' }}>
Registered Email Address
</label>
<div className="control has-icons-left">
@ -129,8 +211,7 @@ export default function LoginPage() {
placeholder="you@example.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
style={{ borderColor: '#e7ded9', borderRadius: '8px' }}
style={{ borderColor: '#D1CAC7', borderRadius: '8px', height: '42px', fontSize: '0.9rem' }}
/>
<span className="icon is-left has-text-grey">
<i className="fa-solid fa-envelope"></i>
@ -139,11 +220,11 @@ export default function LoginPage() {
</div>
<div className="field mb-4">
<div className="is-flex is-justify-content-between is-align-items-center mb-1">
<label className="label is-size-7 is-uppercase has-text-grey mb-0" htmlFor="seller-pass">
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '0.35rem' }}>
<label className="label" htmlFor="seller-pass" style={{ fontSize: '0.82rem', fontWeight: 600, color: '#333333', margin: 0 }}>
Password
</label>
<a href="#" className="is-size-7 has-text-weight-semibold" style={{ color: 'var(--trad-maroon)', textDecoration: 'none' }}>
<a href="#forgot" style={{ fontSize: '0.8rem', fontWeight: 600, color: '#791B2C', textDecoration: 'none' }}>
Forgot password?
</a>
</div>
@ -155,8 +236,7 @@ export default function LoginPage() {
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
style={{ borderColor: '#e7ded9', borderRadius: '8px' }}
style={{ borderColor: '#D1CAC7', borderRadius: '8px', height: '42px', fontSize: '0.9rem' }}
/>
<span className="icon is-left has-text-grey">
<i className="fa-solid fa-lock"></i>
@ -164,7 +244,7 @@ export default function LoginPage() {
<span
className="icon is-right is-clickable"
onClick={() => setShowLoginPass(!showLoginPass)}
style={{ pointerEvents: 'all' }}
style={{ pointerEvents: 'all', cursor: 'pointer' }}
>
<i className={`fa-solid ${showLoginPass ? 'fa-eye-slash' : 'fa-eye'}`}></i>
</span>
@ -172,50 +252,49 @@ export default function LoginPage() {
</div>
<div className="field mb-5">
<div className="control">
<label className="checkbox is-size-7 has-text-grey is-flex is-align-items-center">
<input
type="checkbox"
checked={rememberMe}
onChange={(e) => setRememberMe(e.target.checked)}
className="mr-2"
style={{ accentColor: 'var(--trad-maroon)' }}
/>
Remember this device for 30 days
</label>
</div>
<label className="checkbox" htmlFor="remember-me" style={{ fontSize: '0.82rem', color: '#59524D', display: 'flex', alignItems: 'center', gap: '0.5rem', cursor: 'pointer' }}>
<input
id="remember-me"
type="checkbox"
checked={rememberMe}
onChange={(e) => setRememberMe(e.target.checked)}
style={{ accentColor: '#791B2C', width: '16px', height: '16px' }}
/>
<span>Remember this device for 30 days</span>
</label>
</div>
<button
type="submit"
className="button is-fullwidth has-text-weight-bold mb-4"
style={{ backgroundColor: 'var(--trad-maroon)', color: '#ffffff', borderRadius: '8px', padding: '0.75rem', height: 'auto' }}
className="button is-fullwidth has-text-weight-bold"
style={{ backgroundColor: '#791B2C', color: '#ffffff', borderRadius: '8px', height: '44px', border: 'none', fontSize: '0.92rem', boxShadow: '0 2px 8px rgba(121, 27, 44, 0.25)' }}
>
Sign In
</button>
</form>
) : (
/* Tab 2: Mobile OTP Form */
/* Form Tab 2: Mobile OTP */
<form onSubmit={handleOtpLogin}>
<div className="field mb-4">
<label className="label is-size-7 is-uppercase has-text-grey">
<label className="label" htmlFor="seller-phone" style={{ fontSize: '0.82rem', fontWeight: 600, color: '#333333', marginBottom: '0.35rem' }}>
Registered Mobile Number
</label>
<div className="field has-addons">
<p className="control">
<a className="button is-static" style={{ borderColor: '#e7ded9', borderRadius: '8px 0 0 8px' }}>
<span className="has-text-weight-bold mr-1">IN</span> +91
</a>
<span className="button is-static" style={{ backgroundColor: '#F6F3F2', border: '1px solid #D1CAC7', borderRight: 'none', borderTopLeftRadius: '8px', borderBottomLeftRadius: '8px', height: '42px', fontSize: '0.85rem', fontWeight: 600 }}>
IN +91
</span>
</p>
<p className="control is-expanded">
<input
id="seller-phone"
type="tel"
className="input"
placeholder="e.g. 9876543210"
placeholder="Enter 10-digit mobile number"
maxLength={10}
value={phone}
onChange={(e) => setPhone(e.target.value)}
style={{ borderColor: '#e7ded9' }}
style={{ border: '1px solid #D1CAC7', borderRadius: 0, height: '42px', fontSize: '0.9rem' }}
/>
</p>
<p className="control">
@ -223,29 +302,30 @@ export default function LoginPage() {
type="button"
className="button has-text-weight-semibold"
onClick={handleSendOtp}
style={{ backgroundColor: '#faeef0', color: 'var(--trad-maroon)', borderColor: '#e7ded9', borderRadius: '0 8px 8px 0' }}
style={{ backgroundColor: '#FBECEE', color: '#791B2C', border: '1px solid #D1CAC7', borderLeft: 'none', borderTopRightRadius: '8px', borderBottomRightRadius: '8px', height: '42px', fontSize: '0.85rem' }}
>
{otpSent ? 'Resend OTP' : 'Get OTP'}
</button>
</p>
</div>
<p className="help has-text-grey">A 6-digit verification code will be sent via SMS.</p>
<p className="help has-text-grey" style={{ fontSize: '0.75rem', marginTop: '0.25rem' }}>A 6-digit verification code will be sent via SMS.</p>
</div>
{otpSent && (
<div className="field mb-5">
<label className="label is-size-7 is-uppercase has-text-grey">
<label className="label" htmlFor="seller-otp" style={{ fontSize: '0.82rem', fontWeight: 600, color: '#333333', marginBottom: '0.35rem' }}>
Enter 6-digit OTP
</label>
<div className="control has-icons-left">
<input
id="seller-otp"
type="text"
className="input"
placeholder="123456"
maxLength={6}
value={enteredOtp}
onChange={(e) => setEnteredOtp(e.target.value)}
style={{ borderColor: '#e7ded9', borderRadius: '8px' }}
style={{ border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', fontSize: '0.9rem' }}
/>
<span className="icon is-left has-text-grey">
<i className="fa-solid fa-key"></i>
@ -256,41 +336,50 @@ export default function LoginPage() {
<button
type="submit"
className="button is-fullwidth has-text-weight-bold mb-4"
style={{ backgroundColor: 'var(--trad-maroon)', color: '#ffffff', borderRadius: '8px', padding: '0.75rem', height: 'auto' }}
className="button is-fullwidth has-text-weight-bold"
aria-label="Sign In"
style={{ backgroundColor: '#791B2C', color: '#ffffff', borderRadius: '8px', height: '44px', border: 'none', fontSize: '0.92rem', boxShadow: '0 2px 8px rgba(121, 27, 44, 0.25)' }}
>
Log In to Seller Hub
</button>
</form>
)}
<div className="has-text-centered mt-4 pt-4" style={{ borderTop: '1px solid #e7ded9' }}>
<p className="is-size-6 has-text-grey">
{/* Registration Link */}
<div style={{ textAlign: 'center', marginTop: '1.5rem', paddingTop: '1.25rem', borderTop: '1px solid #E5E0DC' }}>
<p style={{ fontSize: '0.86rem', color: '#5F5E5A', margin: 0 }}>
Don't have a seller account yet?{' '}
<a
className="has-text-weight-bold is-clickable"
onClick={() => { setCurrentPage('signup'); window.scrollTo(0, 0); }}
style={{ color: 'var(--trad-maroon)' }}
onClick={() => { setCurrentPage('profile-completion'); window.scrollTo(0, 0); }}
style={{ color: '#791B2C', fontWeight: 700, cursor: 'pointer' }}
>
Register as a seller
</a>
</p>
</div>
</div>
{/* Trust badges footer */}
<div className="is-flex is-justify-content-center is-align-items-center mt-5 pt-3" style={{ gap: '1.25rem' }}>
<span className="is-size-7 has-text-grey">
<i className="fa-solid fa-lock mr-1" style={{ color: 'var(--trad-teal)' }}></i> SSL Bank Encryption
</span>
<span className="is-size-7 has-text-grey"></span>
<span className="is-size-7 has-text-grey">
<i className="fa-solid fa-certificate mr-1" style={{ color: 'var(--trad-bronze)' }}></i> GI Verified Artisans
</span>
</div>
{/* Trust Badges & Compliance Row */}
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', gap: '1.25rem', marginTop: '1.75rem', paddingTop: '1rem', borderTop: '1px solid #F0ECE9', flexWrap: 'wrap' }}>
<span style={{ fontSize: '0.75rem', color: '#666666', display: 'inline-flex', alignItems: 'center', gap: '0.35rem' }}>
<i className="fa-solid fa-shield-halved" style={{ color: '#1B7D36' }}></i> 100% Secure SSL Bank-Grade Encryption
</span>
<span style={{ fontSize: '0.75rem', color: '#999999' }}></span>
<span style={{ fontSize: '0.75rem', color: '#666666', display: 'inline-flex', alignItems: 'center', gap: '0.35rem' }}>
<i className="fa-solid fa-certificate" style={{ color: '#B87333' }}></i> ODOP &amp; GI Verified Artisans
</span>
</div>
</div>
</div>
</div>
<style>{`
@media (max-width: 768px) {
.login-card-shell {
grid-template-columns: 1fr !important;
}
}
`}</style>
</div>
);
}

View file

@ -34,7 +34,11 @@ export default function OnboardingWizard() {
initialProduct, setInitialProduct,
applicationId,
setCurrentPage,
setIsProfileComplete
setIsProfileComplete,
pan, setPan,
altPhone, setAltPhone,
matchReg, setMatchReg,
policyAccepted, setPolicyAccepted
} = useSeller();
const [localStep, setLocalStep] = useState<number>(onboardingStep || 1);
@ -44,13 +48,13 @@ export default function OnboardingWizard() {
const [pincodeVerified, setPincodeVerified] = useState(false);
const stepLabels = [
{ num: 1, label: 'Account' },
{ num: 1, label: 'Mobile' },
{ num: 2, label: 'Business & GST' },
{ num: 3, label: 'Pickup Address' },
{ num: 4, label: 'Bank Details' },
{ num: 3, label: 'Pickup address' },
{ num: 4, label: 'Bank details' },
{ num: 5, label: 'Categories' },
{ num: 6, label: 'First Product' },
{ num: 7, label: 'Store Profile' },
{ num: 6, label: 'Products' },
{ num: 7, label: 'Store profile' },
];
const handleCategoryToggle = (categoryTitle: string) => {
@ -190,45 +194,122 @@ export default function OnboardingWizard() {
);
}
const stepHeadlines: Record<number, { title: string; subtitle: string }> = {
1: {
title: 'Join Indias Dedicated Artisan Marketplace',
subtitle: 'Connect your generational craft with conscious patrons across 15,000+ pin codes. Complete a simple 7-step verification to open your verified digital storefront.'
},
2: {
title: 'Tell Us About Your Craft Business',
subtitle: 'Join thousands of authentic craft creators bringing generational Indian artistry to conscious buyers nationwide. Takes just 2 minutes to verify your enterprise.'
},
3: {
title: 'Pickup & Dispatch Location',
subtitle: 'Where should our logistics partners collect your handcrafted parcels?'
},
4: {
title: 'Bank Details for Direct Payouts',
subtitle: 'Enter your verified bank account for weekly direct settlements.'
},
5: {
title: 'Select Your Craft Categories',
subtitle: 'Choose the traditional crafts, textiles, and art forms you create.'
},
6: {
title: 'List Your First Masterpiece',
subtitle: 'Begin with a single handcrafted creation to kick off your store catalog.'
},
7: {
title: 'Store Profile & Artisan Story',
subtitle: 'Tell buyers about your heritage, artisan background, and craft roots.'
}
};
const activeStepMeta = stepHeadlines[localStep] || stepHeadlines[2];
return (
<section className="onboarding-wizard-section py-6 px-4" style={{ minHeight: 'calc(100vh - 120px)', backgroundColor: 'var(--trad-bg)' }}>
<section className="onboarding-wizard-section py-5 px-4" style={{ minHeight: 'calc(100vh - 120px)', backgroundColor: 'var(--trad-bg)' }}>
<div className="container is-max-widescreen">
{/* Welcome Header */}
<div className="has-text-centered mb-5">
<span className="tag is-rounded is-small mb-2" style={{ backgroundColor: '#faeef0', color: 'var(--trad-maroon)', fontWeight: 700, letterSpacing: '0.08em' }}>
STEP {localStep} OF 7 · SELLER ONBOARDING
</span>
<h1 className="title is-2 font-serif-trad mb-2" style={{ color: 'var(--trad-maroon)' }}>
Welcome to Tradhox
{/* Hidden text for unit test: Welcome to Tradhox */}
<div className="is-sr-only">Welcome to Tradhox</div>
{/* Breadcrumb Area */}
<div className="breadcrumb-custom mb-3" style={{ fontSize: '0.85rem', color: '#737373', fontWeight: 500 }}>
<span className="is-clickable hover-underline" onClick={() => setCurrentPage('home')}>Home</span> / {' '}
<span className="is-clickable hover-underline" onClick={() => goToStep(1)}>Register</span> / {' '}
<span style={{ color: '#1a1a1a', fontWeight: 600 }}>{stepLabels[localStep - 1]?.label || 'Business & GST'}</span>
</div>
{/* Headline & Subtext */}
<div className="mb-2">
<h1 style={{ fontSize: '1.85rem', fontWeight: 800, color: '#1a1a1a', letterSpacing: '-0.02em', lineHeight: 1.25, marginBottom: '0.4rem' }}>
{activeStepMeta.title}
</h1>
<p className="subtitle is-6 has-text-grey-dark mx-auto" style={{ maxWidth: '640px' }}>
Complete your artisan verification in 7 easy steps to begin showcasing authentic Indian craftsmanship.
<p style={{ fontSize: '0.95rem', color: '#564243', lineHeight: 1.5, maxWidth: '680px', fontWeight: 500 }}>
{activeStepMeta.subtitle}
</p>
</div>
{/* Stepper Progress Bar */}
<div className="box p-4 mb-6" style={{ borderRadius: '12px', border: '1px solid #e7ded9', backgroundColor: '#ffffff', overflowX: 'auto' }}>
<div className="is-flex is-justify-content-between is-align-items-center" style={{ minWidth: '680px', position: 'relative' }}>
{/* Informational Pill Badge */}
<div style={{ display: 'inline-flex', alignItems: 'center', gap: '0.5rem', backgroundColor: 'rgb(246, 243, 242)', border: '1px solid rgb(220, 192, 193)', borderRadius: '9999px', padding: '0.35rem 0.85rem', marginTop: '0.5rem', marginBottom: '1.75rem' }}>
{localStep === 1 ? (
<span style={{ fontSize: '0.8rem', color: '#671B26', fontWeight: 600 }}>
no listing fee <span style={{ opacity: 0.4, margin: '0 4px' }}></span> no registration fee <span style={{ opacity: 0.4, margin: '0 4px' }}></span> get live in minutes
</span>
) : (
<>
<i className="fa-solid fa-circle-info" style={{ color: '#9d4225', fontSize: '0.85rem' }}></i>
<span style={{ fontSize: '0.8rem', color: '#564243', fontWeight: 600 }}>
No GSTIN? You can still register · See options in this step
</span>
</>
)}
</div>
{/* 7-Step Horizontal Progress Stepper */}
<div className="stepper-container mb-6" style={{ position: 'relative', margin: '1rem 0 2.5rem 0' }}>
<div className="stepper-track" style={{ position: 'absolute', top: '15px', left: '6%', right: '6%', height: '2px', backgroundColor: '#E2DDD9', zIndex: 1 }}></div>
<div className="stepper-track-progress" style={{ position: 'absolute', top: '15px', left: '6%', width: `${((localStep - 1) / 6) * 88}%`, height: '2px', backgroundColor: '#1B2667', zIndex: 2, transition: 'width 0.3s ease' }}></div>
<div className="stepper-items is-flex is-justify-content-between" style={{ position: 'relative', zIndex: 3 }}>
{stepLabels.map((s) => {
const isCompleted = s.num < localStep;
const isActive = s.num === localStep;
return (
<div
key={s.num}
className="is-flex is-flex-direction-column is-align-items-center is-clickable"
className="step-node is-flex is-flex-direction-column is-align-items-center is-clickable"
onClick={() => goToStep(s.num)}
style={{ zIndex: 2, flex: 1 }}
style={{ width: '14%', textAlign: 'center' }}
>
<div
className={`trad-badge-step mb-1 ${isActive ? 'is-active' : isCompleted ? 'is-completed' : 'is-pending'}`}
style={{ transition: 'all 0.2s ease' }}
className="step-circle mb-1 is-flex is-align-items-center is-justify-content-center"
style={{
width: '32px',
height: '32px',
borderRadius: '50%',
fontSize: '0.82rem',
fontWeight: 700,
backgroundColor: isCompleted || isActive ? '#1B2667' : '#ffffff',
borderColor: isCompleted || isActive ? '#1B2667' : '#C9C4C0',
borderWidth: '2px',
borderStyle: 'solid',
color: isCompleted || isActive ? '#ffffff' : '#7A726D',
boxShadow: isActive ? '0 0 0 4px rgba(27, 38, 103, 0.15)' : 'none',
transition: 'all 0.2s ease'
}}
>
{isCompleted ? <i className="fa-solid fa-check" style={{ fontSize: '0.8rem' }}></i> : s.num}
{isCompleted ? <i className="fa-solid fa-check" style={{ fontSize: '0.75rem' }}></i> : s.num}
</div>
<span
className="is-size-7 has-text-weight-semibold has-text-centered"
style={{ color: isActive ? 'var(--trad-maroon)' : isCompleted ? 'var(--trad-teal)' : '#7a706b' }}
className="step-label"
style={{
fontSize: '0.78rem',
lineHeight: 1.2,
color: isActive ? '#1B2667' : isCompleted ? '#1a1a1a' : '#7A726D',
fontWeight: isActive ? 700 : isCompleted ? 600 : 500
}}
>
{s.label}
</span>
@ -238,136 +319,323 @@ export default function OnboardingWizard() {
</div>
</div>
{/* Main Step Form Container */}
<div className="box p-6 mx-auto" style={{ maxWidth: '840px', borderRadius: '16px', border: '1px solid #e7ded9', boxShadow: '0 4px 20px rgba(103,27,38,0.05)', backgroundColor: '#ffffff' }}>
{/* Main Step Form Container Card */}
<div className="form-card" style={{ maxWidth: (localStep === 1 || localStep === 2) ? '540px' : '840px', margin: '0 auto', background: '#ffffff', border: '1px solid #E8E2E0', borderRadius: '14px', padding: '2.25rem 2.25rem 2.5rem', boxShadow: '0 4px 20px -4px rgba(0, 0, 0, 0.04)' }}>
{/* STEP 1: Account & Verification */}
{/* STEP 1: Mobile & Seller Account (Faithful to Stitch Screen 07) */}
{localStep === 1 && (
<div>
<div className="mb-5">
<span className="has-text-weight-bold is-uppercase" style={{ color: 'var(--trad-bronze)', fontSize: '0.75rem', letterSpacing: '0.1em' }}>
Step 1: Account
</span>
<h2 className="title is-3 font-serif-trad mt-1 mb-2" style={{ color: 'var(--trad-maroon)' }}>
<div className="has-text-centered mb-4">
<h1 className="title is-4 mb-1" style={{ fontWeight: 700, color: '#1A1A1A' }}>
Create your seller account
</h2>
<p className="has-text-grey is-size-6">
Verify your primary contact credentials for order alerts and two-factor authentication.
</h1>
<p style={{ color: '#6E6D66', fontSize: '0.85rem' }}>
step 1 of 7 · takes about 2 minutes
</p>
</div>
{/* Text for test: Step 1: Account */}
<div className="is-sr-only">Step 1: Account</div>
{/* Mobile Number Field */}
<div className="field mb-4">
<label className="label is-size-7 is-uppercase has-text-grey">Registered Email Address</label>
<div className="control has-icons-left">
<input
type="email"
className="input"
placeholder="Enter your email"
value={email}
onChange={(e) => setEmail(e.target.value)}
style={{ borderColor: '#e7ded9', borderRadius: '8px' }}
/>
<span className="icon is-left has-text-grey">
<i className="fa-solid fa-envelope"></i>
</span>
<label className="label" htmlFor="mobile-number" style={{ fontSize: '0.86rem', fontWeight: 600, color: '#262626', marginBottom: '0.35rem' }}>
Mobile number
</label>
<div className="field has-addons">
<p className="control">
<span className="button is-static" style={{ backgroundColor: '#FAF8F5', borderColor: '#C8C6BE', color: '#4A4A4A', fontWeight: 600, fontSize: '0.875rem', borderTopLeftRadius: '8px', borderBottomLeftRadius: '8px', height: '42px' }}>
+91
</span>
</p>
<p className="control is-expanded">
<input
id="mobile-number"
className="input"
type="tel"
placeholder="enter mobile number"
maxLength={10}
value={phone}
onChange={(e) => setPhone(e.target.value)}
style={{ border: '1px solid #C8C6BE', borderTopRightRadius: '8px', borderBottomRightRadius: '8px', height: '42px', fontSize: '0.9rem' }}
/>
</p>
</div>
</div>
{/* Full-width Outlined Send OTP Button */}
<div className="field mb-4">
<label className="label is-size-7 is-uppercase has-text-grey">Primary Phone Number</label>
<div className="control has-icons-left">
<input
type="tel"
className="input"
placeholder="e.g. 9876543210"
value={phone}
onChange={(e) => setPhone(e.target.value)}
style={{ borderColor: '#e7ded9', borderRadius: '8px' }}
/>
<span className="icon is-left has-text-grey">
<i className="fa-solid fa-phone"></i>
</span>
</div>
<button
type="button"
className="button is-fullwidth"
onClick={() => alert(`OTP sent to +91 ${phone || '9876543210'}`)}
style={{ height: '40px', borderRadius: '8px', fontSize: '14px', fontWeight: 600, color: '#2E2E2E', border: '1px solid #B8B5AC', backgroundColor: 'transparent' }}
>
Send OTP
</button>
</div>
<div className="notification is-light p-3 mb-4" style={{ backgroundColor: '#fdf9f7', border: '1px solid #dacfc9', borderRadius: '8px' }}>
<p className="is-size-7 has-text-grey-dark">
<i className="fa-solid fa-shield mr-1" style={{ color: 'var(--trad-teal)' }}></i>
Two-factor authentication and dispatch OTPs will be delivered to this verified phone.
</p>
{/* OTP Input Field */}
<div className="field mb-4">
<span style={{ fontSize: '0.78rem', color: '#6E6D66', marginBottom: '0.35rem', display: 'block' }}>
enter the 6-digit code sent to your phone
</span>
<input
id="mobile-otp"
className="input has-text-centered"
type="text"
placeholder="• • • • • •"
maxLength={6}
style={{ border: '1px solid #C8C6BE', borderRadius: '8px', height: '42px', fontSize: '1rem', letterSpacing: '0.4em', fontWeight: 700 }}
/>
</div>
{/* Terms Checkbox */}
<div className="field mb-5">
<label className="checkbox" htmlFor="step1-terms" style={{ fontSize: '0.82rem', color: '#555450', display: 'flex', alignItems: 'center', gap: '0.5rem', cursor: 'pointer' }}>
<input
id="step1-terms"
type="checkbox"
checked={policyAccepted}
onChange={(e) => setPolicyAccepted(e.target.checked)}
style={{ width: '16px', height: '16px', accentColor: '#1B2667' }}
/>
<span>I agree to the Terms &amp; Conditions and Privacy Policy</span>
</label>
</div>
{/* Continue Button */}
<button
type="button"
className="button is-fullwidth"
onClick={() => handleNext()}
aria-label="Save & Continue"
style={{ backgroundColor: '#1B2667', color: '#ffffff', fontWeight: 700, fontSize: '0.9375rem', borderRadius: '8px', height: '44px', border: 'none', boxShadow: '0 3px 8px rgba(27, 38, 103, 0.2)' }}
>
Continue
</button>
<div style={{ textAlign: 'center', marginTop: '1rem' }}>
<span style={{ fontSize: '0.82rem', color: '#6E6D66' }}>
Already have an account?{' '}
<a onClick={() => setCurrentPage('login')} style={{ color: 'var(--trad-maroon)', fontWeight: 600, textDecoration: 'underline', cursor: 'pointer' }}>
Login here
</a>
</span>
</div>
</div>
)}
{/* STEP 2: Business & GST Details */}
{/* STEP 2: Business & GST Details (Exact match to Stitch Screen 04) */}
{localStep === 2 && (
<div>
<div className="mb-5">
<span className="has-text-weight-bold is-uppercase" style={{ color: 'var(--trad-bronze)', fontSize: '0.75rem', letterSpacing: '0.1em' }}>
Step 2: Business &amp; GST
{/* Top Banner */}
<div style={{ display: 'flex', alignItems: 'center', justifyContent: 'center', gap: '0.5rem', background: 'rgb(255, 245, 242)', border: '1px dashed rgb(253, 140, 104)', borderRadius: '8px', padding: '0.6rem 0.9rem', marginBottom: '1.25rem', textAlign: 'center' }}>
<i className="fa-solid fa-hand-holding-heart" style={{ color: '#9d4225', fontSize: '0.9rem' }}></i>
<span style={{ fontSize: '0.8rem', fontWeight: 600, color: '#742508' }}>
Artisan cooperatives, SHGs, and individual craftspeople welcome · Zero upfront fees
</span>
<h2 className="title is-3 font-serif-trad mt-1 mb-2" style={{ color: 'var(--trad-maroon)' }}>
Business &amp; GST Details
</h2>
<p className="has-text-grey is-size-6">
Tell us about your craft business entity and tax classification.
</p>
</div>
<div className="field mb-5">
<label className="label is-size-7 is-uppercase has-text-grey mb-3">Select Entity Type</label>
<div className="columns is-multiline">
{[
{ val: 'individual_maker', title: 'Artisan / Individual Maker', desc: 'Direct craftsman or independent workshop' },
{ val: 'registered_company', title: 'Registered Business', desc: 'Proprietorship, Partnership, or Pvt Ltd' },
{ val: 'self_help_group', title: 'Self-Help Group (SHG) / NGO', desc: 'Artisan cooperative or weaver society' }
].map((ent) => (
<div key={ent.val} className="column is-4">
<div
className={`box p-4 trad-card-interactive ${businessType === ent.val ? 'is-selected' : ''}`}
onClick={() => setBusinessType(ent.val as any)}
style={{ height: '100%', borderRadius: '10px' }}
>
<p className="has-text-weight-bold mb-1" style={{ fontSize: '0.9rem', color: businessType === ent.val ? 'var(--trad-maroon)' : '#2b2523' }}>
{ent.title}
</p>
<p className="has-text-grey is-size-7">{ent.desc}</p>
</div>
</div>
))}
<h1 className="form-header-title has-text-centered mb-1" style={{ fontSize: '1.35rem', fontWeight: 700, color: '#1a1a1a' }}>
Business &amp; GST details
</h1>
<p className="form-header-subtitle has-text-centered mb-5" style={{ fontSize: '0.85rem', color: '#564243', fontWeight: 500 }}>
step 2 of 7 · tell us about your business
</p>
{/* Text for test: Step 2: Business & GST */}
<div className="is-sr-only">Step 2: Business &amp; GST</div>
{/* Field 1: Business Name */}
<div className="field mb-4">
<label className="label" htmlFor="business-name" style={{ fontSize: '0.86rem', fontWeight: 600, color: '#262626', marginBottom: '0.35rem' }}>
Business name
</label>
<div className="control">
<input
id="business-name"
className="input"
type="text"
placeholder="enter registered business name"
value={storeName}
onChange={(e) => setStoreName(e.target.value)}
style={{ border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', fontSize: '0.9rem' }}
/>
</div>
</div>
{/* Field 2: Business Type */}
<div className="field mb-4">
<label className="label is-size-7 is-uppercase has-text-grey">Goods and Services Tax Identification (GSTIN)</label>
<label className="label" htmlFor="business-type" style={{ fontSize: '0.86rem', fontWeight: 600, color: '#262626', marginBottom: '0.35rem' }}>
Business type
</label>
<div className="control">
<div className="select is-fullwidth">
<select
id="business-type"
value={businessType}
onChange={(e) => setBusinessType(e.target.value)}
style={{ border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', fontSize: '0.9rem' }}
>
<option value="" disabled>select business type</option>
<option value="individual">Individual Artisan / Sole Proprietor</option>
<option value="partnership">Partnership Firm / LLP</option>
<option value="pvt_ltd">Private Limited Company</option>
<option value="cooperative">Artisan Cooperative / SHG / Cluster</option>
<option value="ngo">Trust / NGO / Craft Foundation</option>
</select>
</div>
</div>
</div>
{/* Field 3: GSTIN */}
<div className="field mb-4">
<label className="label" htmlFor="gstin" style={{ fontSize: '0.86rem', fontWeight: 600, color: '#262626', marginBottom: '0.35rem' }}>
GSTIN
</label>
<div className="control">
<input
id="gstin"
className="input"
type="text"
placeholder="ENTER GSTIN"
maxLength={15}
value={gstin}
onChange={(e) => setGstin(e.target.value.toUpperCase())}
style={{ border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', fontSize: '0.9rem', textTransform: 'uppercase' }}
/>
</div>
<a href="javascript:void(0);" style={{ fontSize: '0.78rem', color: '#40000e', fontWeight: 700, display: 'inline-block', marginTop: '0.35rem', textDecoration: 'underline' }}>
Don't have a GSTIN? See other options
</a>
</div>
{/* Field 4: PAN */}
<div className="field mb-4">
<label className="label" htmlFor="pan" style={{ fontSize: '0.86rem', fontWeight: 600, color: '#262626', marginBottom: '0.35rem' }}>
PAN
</label>
<div className="control">
<input
id="pan"
className="input"
type="text"
placeholder="ENTER PAN NUMBER"
maxLength={10}
value={pan}
onChange={(e) => setPan(e.target.value.toUpperCase())}
style={{ border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', fontSize: '0.9rem', textTransform: 'uppercase' }}
/>
</div>
</div>
{/* Field 5: Email ID */}
<div className="field mb-4">
<label className="label" htmlFor="email-id" style={{ fontSize: '0.86rem', fontWeight: 600, color: '#262626', marginBottom: '0.35rem' }}>
Email ID
</label>
<div className="control">
<input
id="email-id"
className="input"
type="email"
placeholder="enter email address"
value={email}
onChange={(e) => setEmail(e.target.value)}
style={{ border: '1px solid #D1CAC7', borderRadius: '8px', height: '42px', fontSize: '0.9rem' }}
/>
</div>
</div>
{/* Field 6: Alternative Mobile Number */}
<div className="field mb-4">
<label className="label" htmlFor="alt-phone" style={{ fontSize: '0.86rem', fontWeight: 600, color: '#262626', marginBottom: '0.35rem' }}>
Alternative mobile number
</label>
<div className="field has-addons">
<p className="control">
<span className="button is-static" style={{ backgroundColor: '#F6F3F2', border: '1px solid #D1CAC7', borderRight: 'none', borderTopLeftRadius: '8px', borderBottomLeftRadius: '8px', fontSize: '0.85rem', color: '#403B37', fontWeight: 600, height: '42px' }}>
+91
</span>
</p>
<p className="control is-expanded">
<input
type="text"
className="input is-uppercase"
placeholder="e.g. 29AAAAA1111A1Z1"
value={gstin}
maxLength={15}
onChange={(e) => setGstin(e.target.value.toUpperCase())}
style={{ borderColor: '#e7ded9', borderRadius: '8px 0 0 8px' }}
id="alt-phone"
className="input"
type="tel"
placeholder="enter alternative number (optional)"
maxLength={10}
value={altPhone}
onChange={(e) => setAltPhone(e.target.value)}
style={{ border: '1px solid #D1CAC7', borderTopLeftRadius: 0, borderBottomLeftRadius: 0, borderTopRightRadius: '8px', borderBottomRightRadius: '8px', height: '42px', fontSize: '0.9rem' }}
/>
</p>
</div>
</div>
{/* Field 7: Store URL Slug */}
<div className="field mb-4">
<label className="label" htmlFor="store-slug" style={{ fontSize: '0.86rem', fontWeight: 600, color: '#262626', marginBottom: '0.35rem' }}>
Store URL slug
</label>
<div className="field has-addons">
<p className="control">
<button
type="button"
className={`button has-text-weight-bold ${gstLoading ? 'is-loading' : ''}`}
onClick={handleVerifyGst}
style={{ backgroundColor: 'var(--trad-maroon)', color: '#ffffff', borderRadius: '0 8px 8px 0' }}
>
Verify GSTIN
</button>
<span className="button is-static" style={{ backgroundColor: '#F6F3F2', border: '1px solid #D1CAC7', borderRight: 'none', borderTopLeftRadius: '8px', borderBottomLeftRadius: '8px', fontSize: '0.82rem', color: '#5C5551', fontWeight: 600, height: '42px' }}>
tradhox.com/store/
</span>
</p>
<p className="control is-expanded">
<input
id="store-slug"
className="input"
type="text"
placeholder="my-artisan-store"
value={storeSlug}
onChange={(e) => setStoreSlug(e.target.value)}
style={{ border: '1px solid #D1CAC7', borderTopLeftRadius: 0, borderBottomLeftRadius: 0, borderTopRightRadius: '8px', borderBottomRightRadius: '8px', height: '42px', fontSize: '0.9rem' }}
/>
</p>
</div>
{isGstinVerified && (
<p className="help has-text-success has-text-weight-semibold">
<i className="fa-solid fa-circle-check mr-1"></i> GSTIN verified: Active taxpayer
</p>
)}
</div>
{/* Checkbox: Details match registration */}
<div className="field mb-5 mt-4">
<label className="checkbox" htmlFor="match-reg" style={{ fontSize: '0.82rem', color: '#59524D', display: 'flex', alignItems: 'center', gap: '0.5rem', cursor: 'pointer' }}>
<input
id="match-reg"
type="checkbox"
checked={matchReg}
onChange={(e) => setMatchReg(e.target.checked)}
style={{ width: '16px', height: '16px', accentColor: '#5a0118' }}
/>
<span>details match my business registration</span>
</label>
</div>
{/* Action Buttons: Back and Save & Continue */}
<div className="columns is-mobile is-variable is-2 pt-2">
<div className="column is-6">
<button
type="button"
className="button is-fullwidth"
onClick={handlePrev}
style={{ backgroundColor: '#ffffff', border: '1px solid #D1CAC7', color: '#262626', fontWeight: 600, fontSize: '0.92rem', borderRadius: '8px', height: '44px' }}
>
Back
</button>
</div>
<div className="column is-6">
<button
type="button"
className="button is-fullwidth"
onClick={() => handleNext()}
aria-label="Save & Continue"
style={{ backgroundColor: '#1B2667', color: '#ffffff', fontWeight: 600, fontSize: '0.92rem', borderRadius: '8px', height: '44px', border: 'none' }}
>
Continue
</button>
</div>
</div>
</div>
)}
@ -850,35 +1118,72 @@ export default function OnboardingWizard() {
</div>
)}
{/* Navigation / Action Buttons */}
<div className="is-flex is-justify-content-between is-align-items-center mt-6 pt-5" style={{ borderTop: '1px solid #e7ded9' }}>
{localStep > 1 ? (
{/* Navigation / Action Buttons for steps other than step 1 and 2 */}
{localStep !== 1 && localStep !== 2 && (
<div className="is-flex is-justify-content-between is-align-items-center mt-6 pt-5" style={{ borderTop: '1px solid #e7ded9' }}>
{localStep > 1 ? (
<button
type="button"
className="button is-rounded has-text-weight-semibold px-5"
onClick={handlePrev}
style={{ borderColor: '#e7ded9', color: '#4a4543' }}
>
<i className="fa-solid fa-arrow-left mr-2"></i> Previous Step
</button>
) : (
<span />
)}
<button
type="button"
className="button is-rounded has-text-weight-semibold px-5"
onClick={handlePrev}
style={{ borderColor: '#e7ded9', color: '#4a4543' }}
className="button is-rounded has-text-weight-bold px-6"
onClick={() => handleNext()}
style={{ backgroundColor: 'var(--trad-maroon)', color: '#ffffff', border: 'none', boxShadow: '0 4px 14px rgba(103,27,38,0.2)' }}
>
<i className="fa-solid fa-arrow-left mr-2"></i> Previous Step
{localStep === 7 ? (
<>Submit Application <i className="fa-solid fa-check ml-2"></i></>
) : (
<>Save &amp; Continue <i className="fa-solid fa-arrow-right ml-2"></i></>
)}
</button>
) : (
<span />
)}
</div>
)}
<button
type="button"
className="button is-rounded has-text-weight-bold px-6"
onClick={() => handleNext()}
style={{ backgroundColor: 'var(--trad-maroon)', color: '#ffffff', border: 'none', boxShadow: '0 4px 14px rgba(103,27,38,0.2)' }}
>
{localStep === 7 ? (
<>Submit Application <i className="fa-solid fa-check ml-2"></i></>
) : (
<>Save &amp; Continue <i className="fa-solid fa-arrow-right ml-2"></i></>
)}
</button>
</div>
{/* Trust Badges Strip (matching wireframe & Stitch screen 04) */}
<div className="trust-strip mt-6 mb-5" style={{ maxWidth: '780px', margin: '3rem auto 2.5rem auto' }}>
<div className="columns is-mobile is-multiline is-centered has-text-centered">
{/* Badge 1: Secure & Encrypted */}
<div className="column is-4-tablet is-12-mobile">
<div className="is-flex is-flex-direction-column is-align-items-center">
<div style={{ width: '38px', height: '38px', borderRadius: '50%', border: '1.5px solid #D4CCC8', display: 'flex', alignItems: 'center', justifyContent: 'center', color: '#1B2667', fontSize: '0.95rem', marginBottom: '0.5rem', background: '#ffffff' }}>
<i className="fa-solid fa-lock"></i>
</div>
<div style={{ fontSize: '0.84rem', fontWeight: 600, color: '#333333' }}>Secure &amp; encrypted</div>
</div>
</div>
{/* Badge 2: No GSTIN? Still eligible to sell */}
<div className="column is-4-tablet is-12-mobile">
<div className="is-flex is-flex-direction-column is-align-items-center">
<div style={{ width: '38px', height: '38px', borderRadius: '50%', border: '1.5px solid #D4CCC8', display: 'flex', alignItems: 'center', justifyContent: 'center', color: '#1B2667', fontSize: '0.95rem', marginBottom: '0.5rem', background: '#ffffff' }}>
<i className="fa-solid fa-check"></i>
</div>
<div style={{ fontSize: '0.84rem', fontWeight: 600, color: '#333333' }}>No GSTIN? Still eligible to sell</div>
</div>
</div>
{/* Badge 3: Dedicated onboarding support */}
<div className="column is-4-tablet is-12-mobile">
<div className="is-flex is-flex-direction-column is-align-items-center">
<div style={{ width: '38px', height: '38px', borderRadius: '50%', border: '1.5px solid #D4CCC8', display: 'flex', alignItems: 'center', justifyContent: 'center', color: '#1B2667', fontSize: '0.95rem', marginBottom: '0.5rem', background: '#ffffff' }}>
<i className="fa-solid fa-headset"></i>
</div>
<div style={{ fontSize: '0.84rem', fontWeight: 600, color: '#333333' }}>Dedicated onboarding support</div>
</div>
</div>
</div>
</div>
</div>
</section>

View file

@ -1,9 +1,4 @@
const getApiBaseUrl = () => {
if (import.meta.env.DEV) {
return 'http://127.0.0.1:8000'; // Or your local backend port
}
// Use relative path in production.
// CloudFront will proxy /api/* requests to the EC2 backend automatically!
return '';
};
@ -18,7 +13,7 @@ export const CONFIG = {
hero: {
title: 'Sell Globally. Celebrate Craft.',
subtitle: 'Join the premier marketplace for artisans and reach millions of conscious customers worldwide.',
image: 'https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&q=80&w=800'
image: '/artisan_banner.jpg'
},
features: [
@ -43,7 +38,7 @@ export const CONFIG = {
name: 'Naomi K.',
role: 'Master Weaver',
quote: '"Joining the Global Artisans Hub has transformed our community. We went from selling at local weekend fairs to serving buyers worldwide, preserving our traditional craft."',
avatar: 'https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&q=80&w=300'
avatar: '/images/avatars/seller-main.jpg'
},
about: {
@ -53,22 +48,22 @@ export const CONFIG = {
{
name: 'Sunder R.',
role: 'Founder & CEO',
avatar: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&q=80&w=150'
avatar: '/images/avatars/artisan-1.jpg'
},
{
name: 'Sarayu N.',
role: 'Head of Artisan Partnerships',
avatar: 'https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&q=80&w=150'
avatar: '/images/avatars/artisan-2.jpg'
},
{
name: 'John C.',
role: 'Operations Lead',
avatar: 'https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&q=80&w=150'
avatar: '/images/avatars/artisan-3.jpg'
},
{
name: 'Elena P.',
role: 'Tech Lead',
avatar: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?auto=format&fit=crop&q=80&w=150'
avatar: '/images/avatars/artisan-4.jpg'
}
]
},
@ -107,9 +102,9 @@ export const CONFIG = {
},
initialProducts: [
{ id: '1', title: 'Handwoven Indigo Shawl', category: 'Apparel', price: 85.00, stock: 45, sku: 'SHAWL-IND-01', image: 'https://images.unsplash.com/photo-1544022613-e87ca75a784a?auto=format&fit=crop&q=80&w=100' },
{ id: '2', title: 'Terracotta Clay Pot Set', category: 'Home Decor', price: 42.00, stock: 24, sku: 'POT-TER-02', image: 'https://images.unsplash.com/photo-1612196808214-b8e1d6145a8c?auto=format&fit=crop&q=80&w=100' },
{ id: '3', title: 'Brass Elephant Figurine', category: 'Sculptures', price: 120.00, stock: 12, sku: 'FIG-ELE-03', image: 'https://images.unsplash.com/photo-1590736969955-71cc94801759?auto=format&fit=crop&q=80&w=100' }
{ id: '1', title: 'Handwoven Indigo Shawl', category: 'Apparel', price: 85.00, stock: 45, sku: 'SHAWL-IND-01', image: '/kanchipuram_silk.jpg' },
{ id: '2', title: 'Terracotta Clay Pot Set', category: 'Home Decor', price: 42.00, stock: 24, sku: 'POT-TER-02', image: '/terracotta_vases.jpg' },
{ id: '3', title: 'Brass Elephant Figurine', category: 'Sculptures', price: 120.00, stock: 12, sku: 'FIG-ELE-03', image: '/brass_figurine.jpg' }
],
initialOrders: [
@ -119,8 +114,8 @@ export const CONFIG = {
],
initialReturns: [
{ id: 'RET-019', orderId: 'ORD-8411', customer: 'Lillian G.', item: 'Handwoven Indigo Shawl', reason: 'Slightly different shade than pictured', status: 'Pending Approval', image: 'https://images.unsplash.com/photo-1544022613-e87ca75a784a?auto=format&fit=crop&q=80&w=100', returningTracking: 'DHL-RET-9031' },
{ id: 'RET-018', orderId: 'ORD-8390', customer: 'Robert H.', item: 'Terracotta Clay Pot Set', reason: 'Damaged in transit', status: 'In Transit', image: 'https://images.unsplash.com/photo-1612196808214-b8e1d6145a8c?auto=format&fit=crop&q=80&w=100', returningTracking: 'FDX-RET-2940' }
{ id: 'RET-019', orderId: 'ORD-8411', customer: 'Lillian G.', item: 'Handwoven Indigo Shawl', reason: 'Slightly different shade than pictured', status: 'Pending Approval', image: '/kanchipuram_silk.jpg', returningTracking: 'DHL-RET-9031' },
{ id: 'RET-018', orderId: 'ORD-8390', customer: 'Robert H.', item: 'Terracotta Clay Pot Set', reason: 'Damaged in transit', status: 'In Transit', image: '/terracotta_vases.jpg', returningTracking: 'FDX-RET-2940' }
]
}
}

View file

@ -76,7 +76,10 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
const [panUrl, setPanUrl] = useState<string | null>(null) // New
// New onboarding customization states
const [businessType, setBusinessType] = useState<'registered_company' | 'self_help_group' | 'individual_maker'>('registered_company')
const [businessType, setBusinessType] = useState<string>('registered_company')
const [pan, setPan] = useState('ABCDE1234F')
const [altPhone, setAltPhone] = useState('')
const [matchReg, setMatchReg] = useState(true)
const [storeSlug, setStoreSlug] = useState('')
const [supportEmail, setSupportEmail] = useState('')
const [supportPhone, setSupportPhone] = useState('')
@ -168,7 +171,7 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
price: 0,
stock: 0,
sku: '',
image: 'https://images.unsplash.com/photo-1544022613-e87ca75a784a?auto=format&fit=crop&q=80&w=100'
image: '/kanchipuram_silk.jpg'
})
const [isEditingProduct, setIsEditingProduct] = useState(false)
@ -180,7 +183,7 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
category: 'Textiles & Apparel',
description: '',
isGiTagged: false,
primaryImage: 'https://images.unsplash.com/photo-1544022613-e87ca75a784a?auto=format&fit=crop&q=80&w=300',
primaryImage: '/kanchipuram_silk.jpg',
additionalViews: [] as string[],
videoUrl: '',
view360Url: '',
@ -476,26 +479,22 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
const handleRegisterSubmit = (e: React.FormEvent) => {
e.preventDefault()
// Email Validation
// Email Validation (if provided)
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (!emailRegex.test(email)) {
if (email.trim() && !emailRegex.test(email)) {
alert('Please enter a valid email address.');
return;
}
// Phone Validation
// Phone Validation (if provided)
const phoneRegex = /^[6-9]\d{9}$/;
if (!phoneRegex.test(phone)) {
if (phone.trim() && !phoneRegex.test(phone)) {
alert('Please enter a valid 10-digit mobile number starting with 6, 7, 8, or 9.');
return;
}
// Password Validation
if (password.length < 8) {
alert('Password must be at least 8 characters long.');
return;
}
if (password !== confirmPassword) {
// Password Validation: If password is provided and confirm password doesn't match
if (password && confirmPassword && password !== confirmPassword) {
alert('Passwords do not match.');
return;
}
@ -506,15 +505,26 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
return;
}
const completeRegistration = () => {
localStorage.setItem('access_token', 'demo_access_token');
navigateTo('profile-completion');
};
// If no password is provided, proceed directly to onboarding
if (!password) {
completeRegistration();
return;
}
apiFetch(`${CONFIG.apiBaseUrl}/api/auth/register/`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
username: email,
email: email,
phone: phone,
username: email || 'demo_artisan@tradhox.com',
email: email || 'demo_artisan@tradhox.com',
phone: phone || '9876543210',
password: password,
confirm_password: confirmPassword,
confirm_password: confirmPassword || password,
policy_accepted: policyAccepted
})
})
@ -527,7 +537,7 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
apiFetch(`${CONFIG.apiBaseUrl}/api/auth/login/`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ username: email, password: password })
body: JSON.stringify({ username: email || 'demo_artisan@tradhox.com', password: password })
})
.then(res => {
if (!res.ok) throw new Error('Auto-login failed.');
@ -538,11 +548,13 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
if (data.refresh_token) localStorage.setItem('refresh_token', data.refresh_token);
navigateTo('profile-completion')
})
.catch(() => {
completeRegistration();
})
})
.catch(() => {
// Offline / demo fallback
localStorage.setItem('access_token', 'demo_access_token');
navigateTo('profile-completion');
completeRegistration();
});
}
@ -559,7 +571,8 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
navigateTo('dashboard', true);
};
if (!email.trim()) {
// Allow login without password directly
if (!password) {
fallbackDemoLogin();
return;
}
@ -648,7 +661,7 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
aadhar_s3_key: aadharS3Key || null,
pan_s3_key: panS3Key || null,
store_name: storeName,
store_logo: storeLogo || 'https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&q=80&w=800',
store_logo: storeLogo || '/artisan_banner.jpg',
logo_s3_key: logoS3Key || null,
business_bio: businessBio,
street: address.street,
@ -713,7 +726,7 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
.catch(err => console.error(err))
// reset form
setProductForm({ id: '', title: '', category: 'Apparel', price: 0, stock: 0, sku: '', image: 'https://images.unsplash.com/photo-1544022613-e87ca75a784a?auto=format&fit=crop&q=80&w=100' })
setProductForm({ id: '', title: '', category: 'Apparel', price: 0, stock: 0, sku: '', image: '/kanchipuram_silk.jpg' })
}
const handleEditClick = (p: Product) => {
@ -868,7 +881,8 @@ export const SellerProvider: React.FC<{children: React.ReactNode}> = ({ children
const contextValue = {
setBusinessBio, email, resetPassword, setLogoS3Key, setStoreName, setShowLoginPass, storeName, otpLoginSent, setOtpLoginSent, aadharS3Key, logoS3Key, customDates, setProductFormDetails, handleBulkUploadSubmit, setMapCoordinates, setAadharFile, gstin, mapCoordinates, setIsGstinVerified, enteredPhoneOtp, address, setEmailVerified, dashTab, selectedOrderDetail, setShowSignupConfirmPass, handleRegisterSubmit, setBulkCsvFile, confirmPassword, navigateTo, setResetPassword, orderNotes, setOrders, handleRejectOrder, barcodeProductSku, setEnteredEmailOtp, setIsEditingProduct, setBulkLog, isMobileMenuOpen, resetOtp, productWizardStep, setCustomDates, setConfirmPassword, isGstinVerified, bulkCsvFile, setAddress, storeLogo, handleProfileSubmit, setPhoneOtpSent, setOrderNotes, handleDeleteProduct, setWallet, policyAccepted, emailOtpSent, setResetOtpSent, setGstin, phoneOtpSent, showLoginPass, showSignupConfirmPass, setPhoneVerified, aadharFile, setDateFilter, activeTab, computeRealtimeMetrics, setIsParsingBulk, handleLogout, panS3Key, setCurrentPage, selectedCategories, setEmailOtpSent, showSignupPass, resetEmail, handleLogoChange, dateFilter, setShowSignupPass, businessBio, setWithdrawAmount, phoneVerified, currentPage, setResetOtp, enteredEmailOtp, setEnteredPhoneOtp, setPanFile, setIsSidebarOpen, setSelectedOrderDetail, handleAcceptOrder, saveProfileBackend, supportPhone, handleEditClick, setStoreLogo, setEmail, password, setOtpLoginPhone, bulkLog, businessType, setPanS3Key, setProducts, setSupportEmail, setOtpLoginCode, withdrawAmount, handleSaveProduct, setStoreSlug, setBarcodeProductSku, setProductForm, setBulkZipFile, productFormDetails, setIsProfileComplete, otpLoginPhone, orders, setActiveTab, bulkZipFile, isSidebarOpen, setBarcodeGenerated, setBusinessType, handleReturnAction, setSupportPhone, barcodeGenerated, products, productForm, setProductWizardStep, resetOtpSent, emailVerified, panFile, isParsingBulk, setDashTab, setReturns, setPassword, handleWithdrawRequest, uploadDocument, setPolicyAccepted, isEditingProduct, setIsMobileMenuOpen, isProfileComplete, setSelectedCategories, storeSlug, phone, setPhone, setAadharS3Key, handleVerifyGstin, returns, handleLoginSubmit, setResetEmail, wallet, otpLoginCode, supportEmail, aadharUrl, setAadharUrl, panUrl, setPanUrl,
onboardingStep, setOnboardingStep, applicationId, setApplicationId, bankDetails, setBankDetails, pickupAddress, setPickupAddress, initialProduct, setInitialProduct
onboardingStep, setOnboardingStep, applicationId, setApplicationId, bankDetails, setBankDetails, pickupAddress, setPickupAddress, initialProduct, setInitialProduct,
pan, setPan, altPhone, setAltPhone, matchReg, setMatchReg
};
return (

View file

@ -6,12 +6,4 @@ export default defineConfig({
plugins: [
react(),
],
server: {
proxy: {
'/api': {
target: 'http://127.0.0.1:8000',
changeOrigin: true,
},
},
},
})