♻️ 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,18 @@
import Button from "./button";
import { metadata } from "./metadata";
export { metadata };
import React from "react";
const page = () => {
return (
<main>
<div className="text-center text-3xl mt-6">Nounoz TV</div>
<div>
<Button />
</div>
</main>
);
};
export default page;