ibanking-api-ai/app/layout.tsx

22 lines
374 B
TypeScript

import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: 'BD - Internet Banking',
description: 'Portal Seguro de Internet Banking',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="es">
<body>
{children}
</body>
</html>
);
}