♻️ add root layout with navbar

create root directory for page that will use navbar and other basic elements
This commit is contained in:
2025-07-10 23:57:12 +07:00
parent 2b40f9b407
commit 060ceb8f32
5 changed files with 135 additions and 0 deletions

View File

@ -0,0 +1,10 @@
"use client";
import { Button } from "@heroui/react";
import React from "react";
const button = () => {
return <Button color="primary">Button</Button>;
};
export default button;