diff options
Diffstat (limited to 'Biz/PodcastItLater/Web.py')
| -rw-r--r-- | Biz/PodcastItLater/Web.py | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/Biz/PodcastItLater/Web.py b/Biz/PodcastItLater/Web.py index bc12000..c472819 100644 --- a/Biz/PodcastItLater/Web.py +++ b/Biz/PodcastItLater/Web.py @@ -911,12 +911,13 @@ class HomePage(Component[AnyChildren, HomePageAttrs]): # Hero section html.div( html.h1( - "Your Reading List, Now a Podcast", + "Your Reading List, as a Podcast", classes=["display-5", "fw-bold", "mb-3"], ), html.p( - "Convert web articles to audio. " - "Listen during your commute, workout, or chores.", + "Natural-sounding audio for your articles. " + "Delivered to your podcast app. " + "Listen while commuting, cooking, or working out.", classes=["lead", "text-muted", "mb-4"], ), html.a( @@ -972,7 +973,7 @@ class HomePage(Component[AnyChildren, HomePageAttrs]): ), html.h5("We convert it to audio"), html.p( - "Our AI reads the article and creates a podcast episode.", + "Our AI reads the article in a natural, human-sounding voice and creates a podcast episode.", classes=["text-muted", "small"], ), classes=["card-body", "text-center"], @@ -1015,18 +1016,22 @@ class HomePage(Component[AnyChildren, HomePageAttrs]): "Join others who've converted their reading backlog", classes=["text-center", "mb-4"], ), + classes=["mb-4"], + ), + # Login form + html.div( + LoginForm(error=error), + id="login", + classes=["mb-5"], + ), + # Recent episodes + html.div( EpisodeList( episodes=episodes, rss_url=None, user=None, viewing_own_feed=False, ), - classes=["mb-5"], - ), - # Login form - html.div( - LoginForm(error=error), - id="login", ), user=None, current_page="home", |
