import React from "react"; import Image from "next/image"; import Link from "next/link"; import Logo from "../../../public/logo.svg"; import { getChatHistory } from "../../actions/fetchers"; import NewChatButton from "./newChatButton"; async function Header() { const chatThreads = await getChatHistory(); if (!chatThreads.success || !chatThreads.data) { return