diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 0000000..41fbccf --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,32 @@ +"use client"; + +import React, { useState, useEffect } from 'react'; +import classnames from 'classnames'; +import Link from 'next/link'; +import Button from './Button'; +import Image from 'next/image'; + +const Footer = () => { + return ( + + ); +}; + +export default Footer; \ No newline at end of file diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 5f06d89..4c148c1 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -13,7 +13,7 @@ const Navbar = () => { useEffect(() => { const handleScroll = () => { // Find pixels from top to bottom of "tag line" div - if (window.scrollY > 355) { + if (window.scrollY > 280) { setIsScrolled(true); } else { setIsScrolled(false); @@ -30,14 +30,14 @@ const Navbar = () => { return (