From 7c6087c33a8fe588208075ee9b597da0669c19eb Mon Sep 17 00:00:00 2001 From: andres Date: Tue, 17 Dec 2024 22:03:43 +0100 Subject: [PATCH] Added more stuff --- app/data_charts.js | 14 ++-- app/nav.js | 33 +++++--- app/page.js | 160 +++++++++++++++++++++++++++++-------- public/youniverse_logo.png | Bin 0 -> 14684 bytes 4 files changed, 159 insertions(+), 48 deletions(-) create mode 100644 public/youniverse_logo.png diff --git a/app/data_charts.js b/app/data_charts.js index 468933b..e06af9b 100644 --- a/app/data_charts.js +++ b/app/data_charts.js @@ -382,12 +382,14 @@ function BubbleChartComponent() { }, []); return ( - +
+ +
); }; diff --git a/app/nav.js b/app/nav.js index c7dfc48..3f06aa5 100644 --- a/app/nav.js +++ b/app/nav.js @@ -1,4 +1,5 @@ import { useEffect, useState } from "react"; +import Image from "next/image"; const NavBar = () => { const [scrolled, setScrolled] = useState(false); @@ -13,7 +14,9 @@ const NavBar = () => { return () => window.removeEventListener("scroll", handleScroll); }, []); - return ( + const [showDatasets, setShowDatasets] = useState(false); + + return (