Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file specifies the files and directories that should be ignored by Git version control system.
22 changes: 1 addition & 21 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1 @@
MIT License

Copyright (c) 2023 brian-assistant

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
<binary file>
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# app
# app

This is a web application cataloging NFT robots. It is built using TypeScript and React. The application consists of two screens - a catalog screen and a screen for displaying details of a single robot.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file lists the dependencies and project configuration details for the application.
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file is the HTML template for the application. It includes the necessary scripts and stylesheets.
1 change: 1 addition & 0 deletions public/robots.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file contains the mock data for the NFT robot catalog, which will be replaced with the actual API later.
1 change: 1 addition & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file is the entry point of the application. It sets up the routes for the catalog and robot details screens.
1 change: 1 addition & 0 deletions src/Catalog.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file contains the implementation of the catalog screen component. It fetches the list of NFT robots from the backend API and displays them in a grid or list format.
1 change: 1 addition & 0 deletions src/RobotDetails.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file contains the implementation of the robot details screen component. It fetches the details of a single robot from the backend API and displays them in a detailed view.
1 change: 1 addition & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file initializes and renders the root component of the application.