create root directory for page that will use navbar and other basic elements
19 lines
314 B
TypeScript
19 lines
314 B
TypeScript
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;
|