Skip to content

Commit

Permalink
Remove unused import and adjust hero image
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleemboyer committed Mar 14, 2024
1 parent 91ae393 commit 5708a85
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
10 changes: 10 additions & 0 deletions src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
min-height: 100vh;
}

.header {
background-color: var(--color-eerie-black);

& img {
height: auto;
max-width: 1000px;
margin: 0 auto;
}
}

.main {
padding: 24px;
margin: 0 auto;
Expand Down
3 changes: 1 addition & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Image from "next/image";
import classNames from "classnames";
import styles from "./index.module.css";

Expand All @@ -8,7 +7,7 @@ const CODE_OF_CONDUCT_LINK =
const HomePage = () => {
return (
<div className={styles.root}>
<header>
<header className={styles.header}>
{/* eslint-disable-next-line @next/next/no-img-element */}
<img
alt="logo"
Expand Down

0 comments on commit 5708a85

Please sign in to comment.