update favicon
This commit is contained in:
parent
ce5734e7ba
commit
9944157950
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 10 KiB |
@ -7,6 +7,7 @@ import { api } from "~/utils/api";
|
||||
import "~/styles/globals.css";
|
||||
import Header from "~/components/Header";
|
||||
import Footer from "~/components/Footer";
|
||||
import Head from "next/head";
|
||||
|
||||
const MyApp: AppType<{ session: Session | null }> = ({
|
||||
Component,
|
||||
@ -14,6 +15,11 @@ const MyApp: AppType<{ session: Session | null }> = ({
|
||||
}) => {
|
||||
return (
|
||||
<SessionProvider session={session}>
|
||||
<Head>
|
||||
<title>ATR</title>
|
||||
<meta name="description" content="University of Iowa Center for Auditory Training Resources" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</Head>
|
||||
<Header />
|
||||
<Component {...pageProps} />
|
||||
<Footer />
|
||||
|
@ -19,11 +19,6 @@ const Home: NextPage = () => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>ATR</title>
|
||||
<meta name="description" content="University of Iowa Center for Auditory Training Resources" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</Head>
|
||||
<main>
|
||||
<div style={{
|
||||
backgroundImage: `url("/backdrops/patient-clinic-bg.jpeg")`,
|
||||
|
@ -29,11 +29,6 @@ const Resources = () => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>ATR</title>
|
||||
<meta name="description" content="University of Iowa Center for Auditory Training Resources" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
</Head>
|
||||
<main className="my-6 md:px-4 max-w-6xl mx-auto">
|
||||
<div className="sm:mb-4 mb-2 sm:p-4 p-2 space-y-2">
|
||||
<h1 className="text-3xl font-bold">All Resources</h1>
|
||||
|
Loading…
x
Reference in New Issue
Block a user