import html from 'choo/html'; export const loggedOutView = (homeController, emit) => { return [ html`

Read Together

Keep track of books you've read, want to read, and are currently reading.
Share your thoughts about what you're reading and see what your friends think of their books.
`, html`

Join the Community

Recent Reviews

${homeController.recentReviews.map(review => reviewCard(review))}

Recent Updates

`, html`
Join Now!
`, ]; }