Skip to content

Commit

Permalink
Refactor and improve peformance (#20)
Browse files Browse the repository at this point in the history
* feat: split hero content into a different component

* refactor: Hero component

* refactor: animations

* refactor: Game component

* refactor: index page

* refactor: components directory structure

* refactor: document class name and remove viewport meta

* refactor: move symbols and symbolAssets into a common place

* refactor: document

* refactor: Avatar into PlayerAvatar

* refactor: GameResult with PlayerAvatar

* feat: add support for providing custom size to PlayerAvatar

* refactor: AvatarPicker

* refactor: Play page with AvatarPicker

* fix: increase contrast for gray colour

* refactor: Container to Wrapper

* refactor: `Container`  => `Wrapper`

* Install packages

* Format crypto code

* Remove unused import

* Fix server url env value
  • Loading branch information
haneenmahd authored Dec 28, 2023
1 parent 9528a69 commit 0615af7
Show file tree
Hide file tree
Showing 23 changed files with 12,822 additions and 1,602 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# IGNORE: TODO
TODO

# dependencies
node_modules
/.pnp
Expand Down
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Brave",
"runtimeExecutable": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser",
"userDataDir": true,
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/frontend"
}
]
}
Loading

1 comment on commit 0615af7

@vercel
Copy link

@vercel vercel bot commented on 0615af7 Dec 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

tic-tac-toe – ./

tic-tac-toe-haneenmahdin.vercel.app
tic-tac-toe-git-master-haneenmahdin.vercel.app
tictacgo.vercel.app

Please sign in to comment.