changed navbar

This commit is contained in:
2026-03-13 14:40:00 +08:00
parent f44258d134
commit cb850b4cd0
14 changed files with 414 additions and 305 deletions

View 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;