diff --git a/components/Footer.tsx b/components/Footer.tsx
new file mode 100644
index 0000000..9012459
--- /dev/null
+++ b/components/Footer.tsx
@@ -0,0 +1,11 @@
+export const Footer = () => {
+ return(
+
+ )
+}
\ No newline at end of file
diff --git a/pages/index.tsx b/pages/index.tsx
index bb2df9f..9a37449 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -5,19 +5,21 @@ import useSWR from 'swr'
import FadeIn from 'react-fade-in'
import { socials } from 'components/data/socials'
+import { Footer } from 'components/Footer'
import { Icon } from 'components/Icon'
-import profilePic from '../public/profile.webp'
import { Toaster } from 'react-hot-toast'
import { FaSpotify } from 'react-icons/fa'
+import profilePic from '../public/profile.webp'
+
const fetcher = (url: RequestInfo) => fetch(url).then(r => r.json())
export default function() {
const { data: spotify } = useSWR('/api/spotify', fetcher, { refreshInterval: 1000 })
+
if(!spotify) return
return (
- <>
@@ -54,9 +56,9 @@ export default function() {
))}
-
+
+
- >
)
}
\ No newline at end of file