Skip to content

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nwalters512 committed Mar 13, 2024
1 parent c531e33 commit b0770fa
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion src/pages/about/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from "react";
import classnames from "classnames";
import Head from "next/head";
import Image, { ImageProps } from "next/image";

Expand Down
1 change: 0 additions & 1 deletion src/pages/gallery/courses/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from "react";
import Head from "next/head";
import Link from "next/link";
import Image, { ImageProps } from "next/image";
import classnames from "classnames";

import { PageBanner } from "../../../components/Banner";
import { Heading } from "../../../components/Heading";
Expand Down
1 change: 0 additions & 1 deletion src/pages/oer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from "react";
import Head from "next/head";
import Link from "next/link";
import Image, { ImageProps } from "next/image";
import classnames from "classnames";

import { PageBanner } from "../../components/Banner";
import { Heading } from "../../components/Heading";
Expand Down
1 change: 0 additions & 1 deletion src/pages/sigcse2024-bof/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from "react";
import classnames from "classnames";
import Head from "next/head";
import { PageBanner } from "../../components/Banner";
import { Heading } from "../../components/Heading";
Expand Down
1 change: 0 additions & 1 deletion src/pages/sigcse2024/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from "react";
import classnames from "classnames";
import Head from "next/head";
import Link from "next/link";
import { PageBanner } from "../../components/Banner";
Expand Down
2 changes: 1 addition & 1 deletion src/pages/support/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const HelpCard: React.FC<HelpCardProps> = ({ icon, title, href, children }) => {
<div className="card-body">
<Link href={href}>
<h2 className="card-title h5 d-flex align-items-center">
<i className="bi", icon, "me-2"></i>
<i className={classnames("bi", icon, "me-2")}></i>
{title}
</h2>
</Link>
Expand Down

0 comments on commit b0770fa

Please sign in to comment.