Skip to content

Commit

Permalink
Merge pull request #3 from ShivangNagta/triman
Browse files Browse the repository at this point in the history
Triman
  • Loading branch information
shlok923 authored Jul 7, 2024
2 parents 9cfd23e + 3898755 commit d003b41
Show file tree
Hide file tree
Showing 10 changed files with 725 additions and 17 deletions.
89 changes: 79 additions & 10 deletions app/package-lock.json

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

6 changes: 4 additions & 2 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@
"preview": "vite preview"
},
"dependencies": {
"framer-motion": "^11.2.13",
"react": "^18.3.1",
"react-dom": "^18.3.1"
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
Expand All @@ -24,6 +26,6 @@
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"vite": "^5.3.1"
"vite": "^5.3.3"
}
}
5 changes: 4 additions & 1 deletion app/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import MandelbrotFractal from "./Mandelbot"
import Blockchain from "./blockchain"
import TransactionMine from "./transactionMine"
import BlockMine from "./blockMine"
import MandelbrotFractal from "./components/Mandelbrot.jsx"
import JigsawGame from './components/Jigsaw.jsx';

export default function App() {
return (
<div>
<MandelbrotFractal />
</div>
)
}
6 changes: 6 additions & 0 deletions app/src/Blockchain.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

Empty file.
Loading

0 comments on commit d003b41

Please sign in to comment.