turkmen-expo/app/layout.tsx

18 lines
293 B
TypeScript
Raw Normal View History

2025-10-12 17:42:17 +00:00
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "TurkmenExpo",
description: "",
icons: {
2026-02-20 10:00:12 +00:00
icon: "/assets/icons/logo.svg",
2025-10-12 17:42:17 +00:00
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return children;
2025-10-12 17:42:17 +00:00
}