mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-17 02:01:29 +10:00
- designing the builder
- designing the left navbar and sidebar
This commit is contained in:
23
src/components/builder/left/LeftNavbar.js
Normal file
23
src/components/builder/left/LeftNavbar.js
Normal file
@ -0,0 +1,23 @@
|
||||
import { Link } from "gatsby";
|
||||
import React from "react";
|
||||
import Avatar from "../../shared/Avatar";
|
||||
import Logo from "../../shared/Logo";
|
||||
import styles from "./LeftNavbar.module.css";
|
||||
|
||||
const LeftNavbar = () => {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<Link to="/app/dashboard">
|
||||
<Logo size="40px" />
|
||||
</Link>
|
||||
|
||||
<hr className="my-4" />
|
||||
|
||||
<hr className="mt-auto my-4" />
|
||||
|
||||
<Avatar />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default LeftNavbar;
|
||||
Reference in New Issue
Block a user