File tree Expand file tree Collapse file tree 5 files changed +1
-21
lines changed Expand file tree Collapse file tree 5 files changed +1
-21
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ This portfolio showcases my journey as a developer specializing in **Minecraft A
2828
2929## Features
3030
31- - ** Interactive 3D Background Waves** : Dynamic wave animations built with ` Three.js ` and ` Canvas ` , responsive to user interactions.
3231- ** Interactive 3D Avatar** : A fully interactive 3D model of my Minecraft avatar that reacts to user input.
3332- ** Smooth Scrolling and Animations** : Enhanced navigation and animations powered by ` Framer Motion ` .
3433- ** Responsive Design** : Optimized for desktop, tablet, and mobile devices.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import reactHooks from 'eslint-plugin-react-hooks'
55import reactRefresh from 'eslint-plugin-react-refresh'
66import typescript from '@typescript-eslint/eslint-plugin'
77import parser from '@typescript-eslint/parser'
8- import next from 'eslint-plugin-next'
8+
99
1010export default [
1111 { ignores : [ 'dist' , '.next' ] } ,
@@ -27,15 +27,13 @@ export default [
2727 'react-hooks' : reactHooks ,
2828 'react-refresh' : reactRefresh ,
2929 '@typescript-eslint' : typescript ,
30- next,
3130 } ,
3231 rules : {
3332 ...js . configs . recommended . rules ,
3433 ...react . configs . recommended . rules ,
3534 ...react . configs [ 'jsx-runtime' ] . rules ,
3635 ...reactHooks . configs . recommended . rules ,
3736 ...typescript . configs . recommended . rules ,
38- ...next . configs . recommended . rules ,
3937 'react/jsx-no-target-blank' : 'off' ,
4038 'react-refresh/only-export-components' : [
4139 'warn' ,
Original file line number Diff line number Diff line change 2929 "@typescript-eslint/eslint-plugin" : " ^6.0.0" ,
3030 "autoprefixer" : " ^10.4.0" ,
3131 "eslint" : " ^8.50.0" ,
32- "eslint-plugin-next" : " ^0.0.0" ,
3332 "eslint-plugin-react" : " ^7.35.0" ,
3433 "eslint-plugin-react-hooks" : " ^5.1.0-rc.0" ,
3534 "eslint-plugin-react-refresh" : " ^0.4.9" ,
Original file line number Diff line number Diff line change 1- import Waves from "./Waves.tsx" ;
2-
31const Bg = ( ) => {
42 return (
53 < div className = "absolute top-0 left-0 z-[-1] w-full h-full" >
6- < Waves
7- lineColor = "#3b3b3b"
8- backgroundColor = "#262626"
9- waveSpeedX = { 0.02 }
10- waveSpeedY = { 0.01 }
11- waveAmpX = { 40 }
12- waveAmpY = { 20 }
13- friction = { 0.9 }
14- tension = { 0.01 }
15- maxCursorMove = { 120 }
16- xGap = { 12 }
17- yGap = { 36 }
18- />
194 </ div >
205 ) ;
216} ;
Original file line number Diff line number Diff line change 22export { default as Nav } from './Nav' ;
33export { default as Background } from './Background' ;
44export { default as MyHead } from './MyHead' ;
5- export { default as Waves } from './Waves' ;
You can’t perform that action at this time.
0 commit comments