Skip to content

Commit 6e8ec9e

Browse files
committed
initial commit with some metafactory styling
1 parent ac5a195 commit 6e8ec9e

15 files changed

+4463
-16254
lines changed

.eslintrc.json

-3
This file was deleted.

components/header/index.tsx

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { Box } from "@chakra-ui/layout";
2+
import Image from "next/image";
3+
import Link from "next/link";
4+
import React from "react";
5+
6+
import styles from "../../styles/Header.module.css";
7+
8+
export const Header = () => (
9+
<Box className={styles.header}>
10+
<Link href="/">
11+
<a className={styles.logo}>
12+
<Image src="/header-logo-mf.svg" width="48px" height="48px" />
13+
</a>
14+
</Link>
15+
</Box>
16+
);

0 commit comments

Comments
 (0)