Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hcote committed Oct 10, 2024
1 parent d5cbb44 commit a7bda56
Show file tree
Hide file tree
Showing 18 changed files with 3,473 additions and 1,443 deletions.
Empty file added .env
Empty file.
46 changes: 0 additions & 46 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,46 +0,0 @@
# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `yarn start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.\
You will also see any lint errors in the console.

### `yarn test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `yarn build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `yarn eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@kadena/client": "^1.14.0",
"@kadena/pactjs": "^0.4.3",
"@magic-ext/kadena": "^0.2.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"magic-sdk": "^28.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
Expand Down
Binary file removed public/logo192.png
Binary file not shown.
Binary file removed public/logo512.png
Binary file not shown.
25 changes: 0 additions & 25 deletions public/manifest.json

This file was deleted.

3 changes: 0 additions & 3 deletions public/robots.txt

This file was deleted.

81 changes: 58 additions & 23 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,38 +1,73 @@
.App {
align-self: center;
justify-self: center;
}

#root {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
height: 100vh;
display: grid;
font-size: 18px;
}

.container {
width: 300px;
background-color: #eee;
text-align: center;
padding: 27px 18px;
margin-bottom: 27px;
}

h1 {
margin: 0;
padding-bottom: 18px;
font-size: 18px;
}

.info {
max-width: 21ch;
margin: 0 auto;
margin-bottom: 18px;
background-color: #ddd;
padding: 12px 24px;
word-wrap: break-word;
font-family: "Lucida Console", Monaco, monospace;
font-size: 15px;
}

.App-logo {
height: 40vmin;
pointer-events: none;
.info a {
color: black;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
input,
button {
padding: 9px;
font-size: 18px;
margin-bottom: 9px;
}

.App-header {
background-color: #282c34;
min-height: 100vh;
input.full-width {
display: block;
margin: 0 auto;
margin-bottom: 9px;
text-align: center;
}

.faucet-link {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
align-items: center;
width: fit-content;
margin: auto;
}

.App-link {
color: #61dafb;
.faucet-btn {
display: flex;
flex-direction: row;
align-items: center;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
.sending-status {
margin-bottom: 10px;
}
9 changes: 0 additions & 9 deletions src/App.test.tsx

This file was deleted.

Loading

0 comments on commit a7bda56

Please sign in to comment.