changed navbar
This commit is contained in:
17
frontend/src/app/components/navbar/Navbar.jsx
Normal file
17
frontend/src/app/components/navbar/Navbar.jsx
Normal file
@@ -0,0 +1,17 @@
|
||||
"use client";
|
||||
|
||||
import React from "react";
|
||||
import styles from "./styles.module.css";
|
||||
import NavLeft from "./navleft/Header";
|
||||
import NavRight from "./navright/Profile";
|
||||
|
||||
const Navbar = () => {
|
||||
return (
|
||||
<div className={styles.mainContainer}>
|
||||
<NavLeft />
|
||||
<NavRight />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Navbar;
|
||||
Reference in New Issue
Block a user