Amba-Emails/app/layout.tsx
2025-12-14 22:05:15 +03:00

19 lines
345 B
TypeScript

import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Amba Email Templates',
description: 'Preview and test email templates for Amba app',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}