/* The Book EN */ /* global React */ const { useState } = React; function BookHeader() { return (
The Book · coming soon

The Baker's Son in Silicon Valley.

Why the Valley activates talent — and most places don't.

English edition forthcoming.

Cover of Largo ai Giovani
); } const SCHEDA_EN = [ ['Title', 'The Baker\'s Son in Silicon Valley'], ['Subtitle', 'Why the Valley activates talent — and most places don\'t.'], ['Author', 'Vittorio Viarengo'], ['Genre', 'Memoir · manifesto'], ['Length', 'Approx. 75,000 words'], ['Language', 'Italian (English translation forthcoming)'], ['Status', 'Manuscript complete · seeking publisher'], ]; function BookScheda() { return (
Book details
{SCHEDA_EN.map(([label, value]) => ( ))}
{label} {value}
); } function EditionStatus() { return (
Where we stand

Manuscript complete. Seeking a publisher.

The book is written. In conversations with Italian publishers. If you're a publisher or agent, reach out — contact below.

Write to me { e.preventDefault(); const anchor = document.createElement('a'); anchor.href = 'index.html#newsletter'; anchor.click(); }}>Notify me at launch
); } function NewsletterBlock() { return (
Newsletter

Notify me when the book arrives.

One email. Signed. When there's something real to say.

); } function LibroPage() { return (
); } ReactDOM.createRoot(document.getElementById('root')).render();