23 lines
525 B
TypeScript
23 lines
525 B
TypeScript
import type { Metadata } from 'next';
|
|
import { ReactNode } from 'react';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Amba Email Templates',
|
|
description: 'Preview and test email templates for Amba app',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
|
</head>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|