From 7521b3b4a06883debef916a3e069607b4aba4760 Mon Sep 17 00:00:00 2001 From: Hri7566 Date: Thu, 14 Sep 2023 01:31:24 -0400 Subject: [PATCH] Mitigate warnings --- src/components/PageContentBox.tsx | 2 +- src/pages/about.tsx | 2 -- src/pages/team.tsx | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/PageContentBox.tsx b/src/components/PageContentBox.tsx index 6940102..965f82f 100644 --- a/src/components/PageContentBox.tsx +++ b/src/components/PageContentBox.tsx @@ -1,4 +1,4 @@ -import { PropsWithChildren } from "react"; +import { type PropsWithChildren } from "react"; export const PageContentBox = ( props: { diff --git a/src/pages/about.tsx b/src/pages/about.tsx index 20fe576..26f4979 100644 --- a/src/pages/about.tsx +++ b/src/pages/about.tsx @@ -1,5 +1,3 @@ -import Link from "next/link"; -import { Logo } from "../components/Logo"; import { NavigationBar } from "../components/NavigationBar"; import { PageContentBox } from "~/components/PageContentBox"; import { CornerLogo } from "~/components/CornerLogo"; diff --git a/src/pages/team.tsx b/src/pages/team.tsx index 8040386..0cddc37 100644 --- a/src/pages/team.tsx +++ b/src/pages/team.tsx @@ -1,5 +1,3 @@ -import Link from "next/link"; -import { Logo } from "../components/Logo"; import { NavigationBar } from "~/components/NavigationBar"; import { PageContentBox } from "~/components/PageContentBox"; import { EmployeeList } from "~/components/EmployeeList";