Skip to content

Commit

Permalink
Merge pull request #956 from JayeshYadav99/master
Browse files Browse the repository at this point in the history
Added Whole website JavaScript Projects Showcase with Search and Admin Update Functionality
  • Loading branch information
PBJI authored Oct 15, 2023
2 parents a2204b3 + ba29288 commit 5c34413
Show file tree
Hide file tree
Showing 33 changed files with 8,414 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Website/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': 'warn',
},
}
24 changes: 24 additions & 0 deletions Website/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 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?
1 change: 1 addition & 0 deletions Website/demo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

13 changes: 13 additions & 0 deletions Website/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="./Image/javascript.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Javascript Mini-Projects</title>
</head>
<body class="bg-gray-900">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit 5c34413

Please sign in to comment.