Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Minecraft Redesign Project to Showcase Repository #194

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
25 changes: 25 additions & 0 deletions Minecraft-Redesign/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.fuse_hidden*
28 changes: 28 additions & 0 deletions Minecraft-Redesign/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Minecraft Redesign Website

**Website URL**: [Minecraft Redesign](https://minecraft-redesigned.netlify.app/)

A visually modern redesign of the classic Minecraft website, bringing in new aesthetics while maintaining the essence of the original game. Explore a refreshing user experience with smooth animations and engaging 3D elements.

## Technologies Used
- **React**: For building the user interface.
- **Tailwind CSS**: For responsive and modern UI styling.
- **GSAP**: For advanced animations and scroll-triggered effects.
- **Spline**: To integrate and manage 3D models.
- **Framer Motion**: For smooth animations and interactions.

## Author
**Sayan Das**

Feel free to explore and give feedback!

## Here are some snapshots of the redesigned Minecraft website:

- **Homepage Section**
![Minecraft Redesign Homepage](./src/assets/reference-image/intro-image.png)

- **3d Element Design**
![Enchanting Section](./src/assets/reference-image/enchant-image.png)

- **Beautiful Layouts**
![More Games](./src/assets/reference-image/more-games-image.png)
38 changes: 38 additions & 0 deletions Minecraft-Redesign/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import js from '@eslint/js'
import globals from 'globals'
import react from 'eslint-plugin-react'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'

export default [
{ ignores: ['dist'] },
{
files: ['**/*.{js,jsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
parserOptions: {
ecmaVersion: 'latest',
ecmaFeatures: { jsx: true },
sourceType: 'module',
},
},
settings: { react: { version: '18.3' } },
plugins: {
react,
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...js.configs.recommended.rules,
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
...reactHooks.configs.recommended.rules,
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
},
]
13 changes: 13 additions & 0 deletions Minecraft-Redesign/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="./src/assets/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Minecraft Redesign</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading