🧑‍💻 create dedicated metadata for homepage

separating metadata from the main root home file to make it easier to develop
This commit is contained in:
2025-07-09 09:28:04 +07:00
parent d026077663
commit 5266010976
2 changed files with 42 additions and 0 deletions

10
app/(home)/page.tsx Normal file
View File

@ -0,0 +1,10 @@
import { metadata } from "./metadata";
export { metadata };
import React from "react";
const page = () => {
return <div className="text-center text-3xl mt-6">Nounoz TV</div>;
};
export default page;