From 4671296fcb6cf4d0547b0f8b7b74577cacdec253 Mon Sep 17 00:00:00 2001 From: Fraser Date: Fri, 2 Jun 2023 22:45:37 -0400 Subject: [PATCH] add logo to link --- web/src/logo.svg | 67 +++++++++++++++++++++++++++++++++++++++++ web/src/pages/index.tsx | 14 ++++++--- 2 files changed, 76 insertions(+), 5 deletions(-) create mode 100644 web/src/logo.svg diff --git a/web/src/logo.svg b/web/src/logo.svg new file mode 100644 index 0000000..40e004d --- /dev/null +++ b/web/src/logo.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/src/pages/index.tsx b/web/src/pages/index.tsx index cd0c804..1a4e90a 100644 --- a/web/src/pages/index.tsx +++ b/web/src/pages/index.tsx @@ -4,9 +4,11 @@ import Head from "next/head"; import React from "react"; import { type NextPage } from "next"; import { useState } from "react"; +import Image from 'next/image'; import Header from "../header"; import { SearchBox, Followup } from "../searchbox"; +import logo from "../logo.svg" type Citation = { title: string; @@ -467,16 +469,18 @@ const Home: NextPage = () => { case "stampy": return
  • -
    +
    -
  • } - - return <> })}