// home.jsx — Home / New Tab const HomeScreen = () => (
Good morning, Alex

Where focus finds flow.

Search the web or ELY
{[['Search Tabs', ], ['Switch Workspace', ], ['Open Notion', ]].map(([t,i],idx)=>( {i}{t} ))}
{/* favorites */}
Favorites
{[ [, 'Notion'], [, 'YouTube'], [, 'Dribbble'], [, 'X'], [, 'Vercel'], [, 'Behance'], ].map(([g,n], i)=>(
{g}
{n}
))}
{/* lower row */}
Continue where you left off
{[ [, 'Design System – Figma', 'figma.com', '2 min ago'], [
, 'Roadmap 2024', 'linear.app', '1 hour ago'], [, 'Marketing Site', 'elybrowser.com', '3 hours ago'], ].map(([icon, name, host, when], i)=>(
{icon}
{name}
{host} · {when}
))}
Reading List · 5
The aesthetics of
calm technology
Inside ELY Journal · 6 min read
Recent activity
{[ ['viewed', 'Pricing Page', 'elybrowser.com/pricing', '2m', ], ['opened', 'Style Guide', 'figma.com/file/12345', '1h', ], ['commented on', 'Roadmap 2024', 'linear.app/roadmap', '3h', ], ].map(([verb, name, url, when, ic], i)=>(
{ic}
You {verb}
{name}
{url}
{when}
))}
View all history
); window.HomeScreen = HomeScreen;