diff --git a/bookwyrm/templates/guided_tour/home.html b/bookwyrm/templates/guided_tour/home.html
index 77077d794..ff899617c 100644
--- a/bookwyrm/templates/guided_tour/home.html
+++ b/bookwyrm/templates/guided_tour/home.html
@@ -41,7 +41,6 @@ initiateTour.addSteps([
return this.complete()
},
text: "{% trans 'Ok' %}",
- classes: "is-success",
}
],
}
@@ -140,6 +139,30 @@ homeTour.addSteps([
},
],
},
+ {
+ text: "{% trans 'Updates from people you are following will appear on your timeline here.
The Books tab shows just the updates about reading activity.' %}",
+ title: "{% trans 'Timelines' %}",
+ attachTo: {
+ element: "#feed",
+ on: "left",
+ },
+ highlightClass: 'tour-element-highlight',
+ buttons: [
+ {
+ action() {
+ return this.back();
+ },
+ secondary: true,
+ text: "{% trans 'Back' %}",
+ },
+ {
+ action() {
+ return this.next();
+ },
+ text: "{% trans 'Next' %}",
+ },
+ ],
+ },
{
text: "{% trans 'This bell will light up when you have a new notification. When it does, click on it to find out what exciting thing has happened!' %}",
title: "{% trans 'Notifications' %}",