2025-09-23 15:37:43 +00:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "NetidHub",
|
|
|
|
|
description: "NetidHub Platform",
|
|
|
|
|
metadataBase: new URL(process.env.NEXT_PUBLIC_SITE_URL || 'http://localhost:3000'),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}) {
|
2025-09-23 22:21:17 +00:00
|
|
|
return children;
|
2025-09-23 15:37:43 +00:00
|
|
|
}
|