Move index to /terminal
This commit is contained in:
11
components/Blog/Card.tsx
Normal file
11
components/Blog/Card.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import type { NextPage } from "next";
|
||||
import styles from "../../styles/Blog/Card.module.scss";
|
||||
|
||||
const ProjectCard: NextPage<{ title: string, description: string }> = ({ title, description}) => {
|
||||
return <div className={styles.card}>
|
||||
<div className="title">{title}</div>
|
||||
<div className="description">{description}</div>
|
||||
</div>;
|
||||
};
|
||||
|
||||
export default ProjectCard;
|
@ -1,7 +1,11 @@
|
||||
import type { NextPage } from "next";
|
||||
|
||||
const Navigation: NextPage<{}> = () => {
|
||||
return <></>;
|
||||
return <nav>
|
||||
<div className="logo"></div>
|
||||
<div className="navLink">Projects</div>
|
||||
<div className="navLink">About me</div>
|
||||
</nav>;
|
||||
};
|
||||
|
||||
export default Navigation;
|
||||
|
Reference in New Issue
Block a user