diff --git a/components/Container.js b/components/Container.js index 7c24ff8e..948ba596 100644 --- a/components/Container.js +++ b/components/Container.js @@ -11,7 +11,6 @@ const Container = ({ children, layout, fullWidth, tags, meta, ...customMeta }) = const scrollS = window.scrollY const nav = document.querySelector('#sticky-nav') const tagsBar = document.querySelector('#tags-bar') - console.log(windowTop, scrollS) if (scrollS >= windowTop) { nav && nav.classList.add('-mt-16') tagsBar && tagsBar.classList.add('-mt-32') diff --git a/components/Footer.js b/components/Footer.js index df4410fe..8908530f 100644 --- a/components/Footer.js +++ b/components/Footer.js @@ -1,4 +1,3 @@ -import BLOG from '@/blog.config' import React from 'react' const Footer = ({ fullWidth = true }) => { diff --git a/components/LeftFloatButton.js b/components/LeftFloatButton.js index 37242f90..c6367832 100644 --- a/components/LeftFloatButton.js +++ b/components/LeftFloatButton.js @@ -25,7 +25,6 @@ const LeftFloatButton = () => { } }, 500) const [collapse, changeCollapse] = useState(true) - console.log(collapse) return