Registration landing page#200
Merged
Merged
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
shinzo-webapp-staging | d985e6f | Commit Preview URL Branch Preview URL |
May 22 2026, 08:25 PM |
8cb652e to
8a88e45
Compare
9290f58 to
294545d
Compare
VanishMax
reviewed
May 11, 2026
Comment on lines
+8
to
+13
| <div className="mx-4 my-4 w-full min-w-0 max-w-full"> | ||
| <TitleHome /> | ||
| <StatsHome /> | ||
| <IndexersHome /> | ||
| <HostsHome /> | ||
| </div> |
Collaborator
There was a problem hiding this comment.
note: the page looks like this:
it really feels close to explorer, but the UI just feels off. Many explorer components are shared to shinzo/ui package. Would it be possible to reuse almost everything we have for the explorer to make up tables, stats, pagination, buttons? It would be much more shinzo-y
Collaborator
f0d0b89 to
5e03fff
Compare
d95c585 to
f400f1a
Compare
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
shinzo-webapp-staging | f400f1a | May 14 2026, 04:40 AM |
6 tasks
2a6d717 to
d985e6f
Compare
VanishMax
approved these changes
May 25, 2026
Comment on lines
+27
to
+38
| export async function fetchRegisteredHosts( | ||
| pagination: RegisteredHostsPaginationParams | ||
| ): Promise<RegisteredHostsResponse> { | ||
| const params = buildCursorPaginationSearchParams(pagination); | ||
|
|
||
| const response = await fetch( | ||
| `${registeredHostsApiEndpoint}?${params.toString()}` | ||
| ); | ||
| if (!response.ok) throw new Error(`HTTP ${response.status}`); | ||
|
|
||
| return response.json() as Promise<RegisteredHostsResponse>; | ||
| } |
Collaborator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Pull Request
Description
Adding a new landing/home page for the registration app, which displays the list of registered indexers and hosts.
Changes
Related Issue
#195
Steps to Test
Checklist
Notes