// Janaushadhi web (desktop) — shared chrome + page-level components
// Browser frame 1280×900. Inner content ~1280×816.
const Wfont = { fontFamily: 'Inter, -apple-system, system-ui, sans-serif' };
// ── Top nav ──────────────────────────────────────────────────
function WebTopNav({ active = 'home', dark = false }) {
const items = [
{ id: 'home', label: 'Home' },
{ id: 'medicine', label: 'Medicines' },
{ id: 'wellness', label: 'Wellness' },
{ id: 'labs', label: 'Lab tests' },
{ id: 'doctor', label: 'Consult doctor' },
{ id: 'offers', label: 'Offers' },
];
const fg = dark ? '#fff' : C.ink900;
const muted = dark ? 'rgba(255,255,255,0.75)' : C.ink500;
const bg = dark ? 'transparent' : 'white';
return (
{/* Logo */}
J
Janaushadhi
YOUR DIGITAL PHARMACY
{/* Nav links */}
{/* Search */}
Search medicines, brands, lab tests
⌘K
{/* Right cluster */}
);
}
// ── Footer ───────────────────────────────────────────────────
function WebFooter({ minimal = false }) {
if (minimal) {
return (
© 2026 Janaushadhi · Licensed pharmacy DL-560038
AboutHelpPrivacyTerms
);
}
const cols = [
{ h: 'Shop', items: ['Medicines', 'Wellness', 'Devices', 'Babycare', 'Ayurveda'] },
{ h: 'Health', items: ['Consult doctor', 'Lab tests', 'Health records', 'Refill reminders'] },
{ h: 'Company', items: ['About us', 'Pharmacists', 'Careers', 'Press', 'Contact'] },
{ h: 'Help', items: ['FAQ', 'Returns', 'Privacy', 'Terms of service'] },
];
return (
Genuine medicines, delivered in minutes. Verified by licensed pharmacists.
{['App Store', 'Google Play'].map(s => (
↓ {s}
))}
{cols.map((c, i) => (
))}
© 2026 Janaushadhi Pharma Pvt. Ltd. · DL-560038 · GSTIN 29AAACJ1234M1Z9
Made with care in Bengaluru
);
}
Object.assign(window, { WebTopNav, WebFooter });