@@ -100,25 +100,25 @@ export function DashboardSidebar({ children }: { children: React.ReactNode }) {
100100 animate : true ,
101101 onDestroyed : endOnboarding ,
102102 steps : [
103- {
104- element : "#onboarding-new-image" ,
105- popover : {
106- title : "New Image" ,
107- description : "Upload a photo of a shelf to generate recommendations." ,
108- } ,
109- } ,
110103 {
111104 element : "#onboarding-favorites" ,
112105 popover : {
113106 title : "My favorites" ,
114- description : "Save books you love so we can learn your taste ." ,
107+ description : "Save books you love so we can personalize your recommendations ." ,
115108 } ,
116109 } ,
117110 {
118111 element : "#onboarding-genre-preferences" ,
119112 popover : {
120113 title : "Genre preferences" ,
121- description : "Pick broad categories you enjoy for better recommendations." ,
114+ description : "Pick broad categories you enjoy for more personalized recommendations." ,
115+ } ,
116+ } ,
117+ {
118+ element : "#onboarding-new-image" ,
119+ popover : {
120+ title : "New Image" ,
121+ description : "Upload a photo of a shelf to generate recommendations." ,
122122 } ,
123123 } ,
124124 ] ,
@@ -150,15 +150,6 @@ export function DashboardSidebar({ children }: { children: React.ReactNode }) {
150150 < SidebarGroup className = "flex flex-1 flex-col min-h-0" >
151151 < SidebarGroupContent className = "flex flex-1 flex-col min-h-0" >
152152 < SidebarMenu >
153- < SidebarMenuItem
154- id = "onboarding-new-image"
155- >
156- < SidebarMenuButton
157- render = { < Link href = "/dashboard/new-image" > < ImagePlus /> New Image</ Link > }
158- isActive = { pathname === "/dashboard/new-image" }
159- tooltip = "New Image"
160- />
161- </ SidebarMenuItem >
162153 < SidebarMenuItem
163154 id = "onboarding-favorites"
164155 >
@@ -168,6 +159,7 @@ export function DashboardSidebar({ children }: { children: React.ReactNode }) {
168159 tooltip = "My favorites"
169160 />
170161 </ SidebarMenuItem >
162+
171163 < SidebarMenuItem
172164 id = "onboarding-genre-preferences"
173165 >
@@ -177,7 +169,19 @@ export function DashboardSidebar({ children }: { children: React.ReactNode }) {
177169 tooltip = "Genre preferences"
178170 />
179171 </ SidebarMenuItem >
180- </ SidebarMenu >
172+
173+ < SidebarMenuItem
174+ id = "onboarding-new-image"
175+ >
176+ < SidebarMenuButton
177+ render = { < Link href = "/dashboard/new-image" > < ImagePlus /> New Image</ Link > }
178+ isActive = { pathname === "/dashboard/new-image" }
179+ tooltip = "New Image"
180+ />
181+ </ SidebarMenuItem >
182+
183+
184+ </ SidebarMenu >
181185
182186 < div className = "min-h-0 flex-1" aria-hidden />
183187
0 commit comments