1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-17 00:15:30 -04:00

custom <Image /> wrapper now supports static imports too

This commit is contained in:
2022-01-24 08:57:21 -05:00
parent 5d402bc31b
commit 51ecae3c9b
22 changed files with 289 additions and 355 deletions

View File

@@ -21,26 +21,13 @@
margin: 0 auto;
}
.nav > div {
line-height: 0;
}
.name {
flex: 1;
}
@media screen and (max-width: 768px) {
.header {
padding: 0.75em 1.25em;
height: 5.9em;
}
.name {
flex: 0;
}
.menu {
flex: 1;
max-width: 325px;
margin-left: 2.5em;
}

View File

@@ -1,5 +1,5 @@
import { memo } from "react";
import Name from "../Name/Name";
import Selfie from "../Selfie/Selfie";
import Menu from "../Menu/Menu";
import styles from "./Header.module.css";
@@ -7,13 +7,8 @@ import styles from "./Header.module.css";
const Header = () => (
<header className={styles.header}>
<nav className={styles.nav}>
<div className={styles.name}>
<Name />
</div>
<div className={styles.menu}>
<Menu />
</div>
<Selfie className={styles.selfie} />
<Menu className={styles.menu} />
</nav>
</header>
);