- designing the builder

- designing the left navbar and sidebar
This commit is contained in:
Amruth Pillai
2020-07-04 22:41:28 +05:30
parent b42deb737c
commit 6f66181c17
18 changed files with 157 additions and 27 deletions

View File

@ -0,0 +1,24 @@
import React from "react";
import Input from "../../shared/Input";
import LeftNavbar from "./LeftNavbar";
import styles from "./LeftSidebar.module.css";
const LeftSidebar = () => {
return (
<div className="flex">
<LeftNavbar />
<div className={styles.container}>
<section>
<h2 className="text-4xl mb-8">Profile</h2>
<div className="flex items-center">
<div className={styles.circle}></div>
<Input label="Photograph" className="ml-6" />
</div>
</section>
</div>
</div>
);
};
export default LeftSidebar;