ultisuite-client/app/contacts/layout.tsx
R3D347HR4Y 77f99d8d8a hehe
2026-05-19 00:48:20 +02:00

14 lines
220 B
TypeScript

import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Contacts - Ultimail",
}
export default function ContactsLayout({
children,
}: {
children: React.ReactNode
}) {
return children
}