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";