import React from 'react' import dynamic from 'next/dynamic' import AnimatedBackground from '../components/AnimatedBackground' import Parallax from '../components/Parallax' import Letters from '../screens/Letters' import { useInnerWindowSize } from '../utils/hooks' import '../styles/Home.styl' const Cursor = dynamic(() => import('../components/Cursor'), { ssr: false }) const Home: React.FC = () => { const size = useInnerWindowSize() return
blog github

} export default Home