From 129af6b4147b581a9a5955cc0a97c33eb86c129a Mon Sep 17 00:00:00 2001 From: Jason Jordan Date: Tue, 1 Jul 2025 16:56:24 -0400 Subject: [PATCH] Added basic footer, few style changes to nav --- src/components/Footer.tsx | 32 ++++++++++++++++++++++++++ src/components/Navbar.tsx | 21 ++++++++++------- src/components/Section1.tsx | 7 +++--- src/components/Section1Invert.tsx | 4 ++-- src/components/Section1InvertLight.tsx | 4 ++-- src/components/Section1Light.tsx | 4 ++-- src/pages/_app.tsx | 12 ++++++++-- 7 files changed, 64 insertions(+), 20 deletions(-) create mode 100644 src/components/Footer.tsx 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 (