Make /posts/recent the landing page

Changed the root route '/' from BchSend to RecentPosts so that
memo.fullstackcash.net shows the recent posts feed as the landing page.
This commit is contained in:
devops-pi
2026-07-15 12:51:03 -07:00
parent c5bb98ac06
commit a3ee559de2
+1 -1
View File
@@ -34,7 +34,7 @@ function AppBody (props) {
return (
<>
<Routes>
<Route path='/' element={<BchSend appData={appData} />} />
<Route path='/' element={<RecentPosts />} />
<Route path='/balance' element={<GetBalance wallet={appData.wallet} />} />
<Route path='/bch' element={<BchSend appData={appData} />} />
<Route path='/wallet' element={<Wallet appData={appData} />} />