Skip to content

Commit

Permalink
Dice-Game (#54)
Browse files Browse the repository at this point in the history
<!-- If your PR fixes an open issue, use `Closes #101` to link your PR
with the issue. #101 stands for the issue number you are fixing -->

## 🛠️ Issue (Number)

<!-- Example: #104 -->
Closes #53 

# Description

Created a fun dice game with react js and styled component

## Type of change

<!----Please delete options that are not relevant And in order to tick
the check box just add ✅ inside them for example [✅] like this----->
- [✅ ] New feature (non-breaking change which adds functionality)
- [✅ ] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [✅ ] This change requires a documentation update

# Checklist:

<!----Please delete options that are not relevant.And in order to tick
the check box just but x inside them for example [x] like this----->
- [✅ ] I have made this from my own
- [✅ ] I have taken help from some online resourses 
- [ ✅] My code follows the style guidelines of this project
- [ ✅] I have performed a self-review of my own code
- [✅ ] I have commented my code, particularly in hard-to-understand
areas
- [✅ ] I have made corresponding changes to the documentation
- [✅ ] My changes generate no new warnings
- [ ✅] The title of my pull request is a short description of the
requested changes.


# ATTACH SCREEN-SHOTS / DEPLOYMENT LINK

![image](https://github.com/Developers-Adgitm/Projects/assets/127855345/b76e66c5-5af6-47d1-b471-6941f8497e2d)
https://rolll-it.netlify.app/
  • Loading branch information
yadavji008 authored Oct 21, 2023
2 parents 0f2e18c + 856db5f commit a0a373f
Show file tree
Hide file tree
Showing 37 changed files with 6,079 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Projects/Dicegame/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# React + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
1 change: 1 addition & 0 deletions Projects/Dicegame/dist/assets/index-77fc0aaf.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

191 changes: 191 additions & 0 deletions Projects/Dicegame/dist/assets/index-f85cac86.js

Large diffs are not rendered by default.

Binary file added Projects/Dicegame/dist/images/dice/dice_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Dicegame/dist/images/dice/dice_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Dicegame/dist/images/dice/dice_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Dicegame/dist/images/dice/dice_4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Dicegame/dist/images/dice/dice_5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Dicegame/dist/images/dice/dice_6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/Dicegame/dist/images/dices 1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions Projects/Dicegame/dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/topdice.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Roll It</title>
<script type="module" crossorigin src="/assets/index-f85cac86.js"></script>
<link rel="stylesheet" href="/assets/index-77fc0aaf.css">
</head>
<body>
<div id="root"></div>

</body>
</html>
Binary file added Projects/Dicegame/dist/topdice.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions Projects/Dicegame/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/topdice.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Roll It</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit a0a373f

Please sign in to comment.