// Landing page sections const M = window.MERIDIAN; const { Wordmark, ArcMark, Eyebrow, RuleBadge, MButton } = window; // ───────────────── Nav ───────────────── window.LandingNav = function LandingNav({ mobile }) { const links = ['For Authors', 'For Reviewers', 'Pricing', 'About', 'Ethics']; if (mobile) { return ( ); } return ( ); }; // ───────────────── Hero ───────────────── const TAGLINES = { 'A': { eyebrow: 'An open-access journal of biomedical and healthcare research', title: 'A modern journal for biomedical research.' }, 'B': { eyebrow: 'A new kind of journal', title: <>Rigorous. Transparent. Fast. }, 'C': { eyebrow: 'Est. 2026 · ISSN 0000·0000', title: <>Open access,
open review,
paid reviewers. }, }; window.LandingHero = function LandingHero({ tagline = 'B', mobile }) { const t = TAGLINES[tagline]; return (
{/* Masthead banner */}
Vol. 01 · Inaugural issue · 2026 Open Access · CC-BY 4.0 · Signed Peer Review Now accepting submissions
{t.eyebrow}

{t.title}

Peer review published alongside every article. Reviewers paid for their work, with citable DOIs. A flat $150 APC. Decisions in weeks, not months.

Submit a manuscript Apply to editorial board
{/* Right column — stat block */}
At a glance LIVE
{[ ['Median time to first decision', '14 days', M.accent], ['Reviewer honorarium', '$20 – $50', M.ink], ['Article processing charge', '$150', M.ink], ['Peer reviews · named & published', '100%', M.success], ['Open access license', 'CC-BY 4.0', M.ink], ].map(([k, v, c]) => (
{k} {v}
))}
Peer reviewed Open data Signed review
); }; // ───────────────── Pillars ───────────────── window.LandingPillars = function LandingPillars({ mobile }) { const pillars = [ { num: '01', tag: 'Transparent peer review', title: <>Reviews published alongside every article., body: 'Reviewer names, reports, and author responses — all permanent, all citable. Readers see how conclusions were tested, not just the conclusion.', foot: '100% of reviews signed & published' }, { num: '02', tag: 'Fair compensation', title: <>Reviewers paid, cited, and credited., body: 'Every review earns the reviewer $20 – $50 and a citable DOI. Review work becomes visible scholarly output, not invisible unpaid labor.', foot: 'Honorarium per review · $20 – $50' }, { num: '03', tag: 'Open access by default', title: <>CC-BY 4.0. $150 APC. No paywalls., body: 'A flat article processing charge — roughly a tenth of the legacy rate — with full waivers for authors from low-income countries. Every article free to read, forever.', foot: 'Flat APC · full waivers available' }, ]; return (
§ 01 · What makes Meridian different

Three commitments we make to every paper.

{pillars.map(p => (
{p.num}
{p.tag}

{p.title}

{p.body}

{p.foot}
))}
); }; // ───────────────── How it works ───────────────── window.LandingHow = function LandingHow({ mobile }) { const steps = [ { n: '01', t: 'Submit', d: 'Upload manuscript, figures, and data. ORCID sign-in verifies authorship. Intake completeness check runs in seconds.', time: '< 1 min' }, { n: '02', t: 'Editorial review', d: 'Handling editor triages scope, novelty, and reproducibility within 72 hours. No desk-reject fog — you get a reasoned decision either way.', time: '≤ 72 hr' }, { n: '03', t: 'Paid peer review', d: 'Two to three matched reviewers are invited and compensated per review. Reports are structured, signed, and written for the record.', time: '10 – 14 d' }, { n: '04', t: 'Co-creation', d: 'Authors revise in a shared workspace alongside reviewers. The thread is preserved — every question, every response — and published with the paper.', time: '7 – 14 d' }, { n: '05', t: 'Published open', d: 'Article, reviews, and author responses go live under CC-BY 4.0. All parties receive citable DOIs. Indexed, archived, permanent.', time: 'Day one' }, ]; return (
§ 02 · The editorial pipeline

From submission to publication
in four to six weeks.

Median cycle · 4 – 6 weeks
Legacy journals · 6 – 12 months
{/* Desktop: horizontal pipeline */} {!mobile && (
{steps.map((s, i) => (
{s.n} {s.time}

{s.t}

{s.d}

))}
)} {/* Mobile: vertical pipeline */} {mobile && (
{steps.map((s, i) => (
{s.n}

{s.t}

{s.d}

{s.time}
))}
)} {/* Timeline visual */} {!mobile && (
DAY 0
{[20, 40, 60, 80].map(pct => (
))}
DAY 42 · PUBLISHED
)}
); }; // ───────────────── Social proof ───────────────── window.LandingProof = function LandingProof({ mobile }) { const board = [ ['Prof. Amara Okonkwo', 'Editor-in-Chief', 'Stanford · Molecular Neurobiology'], ['Dr. Hiroshi Tanaka', 'Clinical Trials', 'Keio University Hospital'], ['Prof. Elena Vasquez', 'Epidemiology', 'Johns Hopkins BSPH'], ['Dr. Rahul Mehta', 'Computational Biology', 'EMBL Heidelberg'], ['Prof. Sofia Almeida', 'Cardiology', 'Karolinska Institutet'], ['Dr. Priya Raman', 'Genomics & Data', 'Broad Institute'], ['Prof. Samuel Ngwenya', 'Infectious Disease', 'Univ. of Cape Town'], ['Dr. Chen Wei', 'Oncology', 'MSKCC'], ]; const funders = ['Chan Zuckerberg Initiative', 'Wellcome Trust', 'Arcadia Fund', 'Open Philanthropy', 'Simons Foundation']; const indexing = [ ['PubMed Central', 'Submitted', M.warning], ['Crossref DOIs', 'Active', M.success], ['DOAJ', 'Under review', M.warning], ['Web of Science', 'Planned · 2027', M.muted], ['Scopus', 'Planned · 2027', M.muted], ]; return (
{/* Editorial board */}
§ 03 · Editorial board

Active researchers. Named. Accountable.

View full board (42) →
{board.map(([n, r, aff]) => (
{n.split(' ').slice(-2).map(x => x[0]).join('')}
{n}
{r}
{aff}
))}
{/* Funders + indexing */}
§ 04 · Funding partnerships

Supported by research funders who require open publication.

{funders.map(f => (
{f} In discussion
))}
Aspirational · in active conversation
§ 05 · Indexing & archival

Indexed where it counts.

{indexing.map(([n, status, color], i) => (
{n} {status}
))}
); }; // ───────────────── CTA band ───────────────── window.LandingCTA = function LandingCTA({ mobile }) { return (
§ 06 · Begin

Publish your next paper
the way it should work.

Submission takes under a minute. You'll hear back from a handling editor within 72 hours — not 72 days.

ORCID sign-in No login required to browse
); }; // ───────────────── Footer ───────────────── window.LandingFooter = function LandingFooter({ mobile }) { const cols = [ ['For Authors', ['Submit a manuscript', 'Author guidelines', 'Scope & sections', 'APC & waivers', 'Preprint policy']], ['For Reviewers', ['Apply as reviewer', 'Review guidelines', 'Honorarium & DOIs', 'Reviewer index', 'Conflict policy']], ['About', ['Our mission', 'Editorial board', 'Governance', 'Funding', 'Press & media']], ['Ethics & Policy', ['Ethics & integrity', 'Data availability', 'Corrections', 'Retractions', 'Complaints']], ]; return ( ); };