diff --git a/src/App.tsx b/src/App.tsx index 480b782..67a0869 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,25 +1,22 @@ import React from 'react' + import AnimatedBackground from './Components/AnimatedBackground' import Cursor from './Components/Cursor' +import Parallax from './Components/Parallax' import Letters from './Screens/Letters' -import { useMousePosition } from './util' export const Duration = 4000 const App: React.FC = () => { - const mouse = useMousePosition() - - const convertToDeg = (current: number, factor: number) => `${(.5 - current) * factor}deg` - return