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

Latest #40

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2b69dd0
Update package.json
hyperingenious Jun 5, 2023
2fe05b7
Fixing some errors in my machine
hyperingenious Jun 5, 2023
d500fd7
it is ready to be deployed
hyperingenious Jun 5, 2023
fa69c2c
Fixed the file issue
hyperingenious Jun 5, 2023
df9fe6a
Create index.f370c5af.js.map
hyperingenious Jun 5, 2023
cf8e800
Delete yt-ico.909381c6.png
hyperingenious Jun 5, 2023
f24c1c6
Delete twitter-ico.a32e0714.png
hyperingenious Jun 5, 2023
44b1da8
Custom recipe functionaligy
hyperingenious Jun 6, 2023
0db15e5
Update index.html
hyperingenious Jun 6, 2023
6494efa
I have added the projects
hyperingenious Jun 7, 2023
35b6453
Create favicon.jpg
hyperingenious Jun 7, 2023
43769d4
Update index.html
hyperingenious Jun 7, 2023
4f82911
Update project-3.html
hyperingenious Jun 7, 2023
05cc169
Update project-1.html
hyperingenious Jun 7, 2023
491926b
Create package-lock.json
hyperingenious Jun 7, 2023
17828d1
Added the contact section
hyperingenious Jun 7, 2023
9ed69b3
Idk
hyperingenious Jun 20, 2023
34eb226
Revert "Added the contact section"
hyperingenious Jun 20, 2023
0443211
reverted to old changes
hyperingenious Jun 20, 2023
93d645c
reverted the changes
hyperingenious Jun 20, 2023
2ffadfc
Did fixed some bugs
hyperingenious Jun 23, 2023
1d34cb3
Changed address
hyperingenious Jun 23, 2023
aaec597
Merge branch 'main' into latest
hyperingenious Jun 23, 2023
98311d4
Changed the message
hyperingenious Jun 28, 2023
423f4e2
animated-SVG UPDATE
hyperingenious Jul 2, 2023
1fcf979
minor .gitignore update
hyperingenious Jul 3, 2023
1d9ac68
Made some components in react
hyperingenious Jul 3, 2023
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
15 changes: 15 additions & 0 deletions .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',
},
}
131 changes: 15 additions & 116 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,125 +1,24 @@

# Created by https://www.toptal.com/developers/gitignore/api/node
# Edit at https://www.toptal.com/developers/gitignore?templates=node

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test
.env.production

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
node_modules
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# End of https://www.toptal.com/developers/gitignore/api/node
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
Loading