- Implemented a bash script to test n8n API and retrieve credential schemas. - Added types for API responses, Google Calendar, and WhatsApp instances. - Configured Vitest for testing with React and added setup for testing-library.
23 lines
526 B
TypeScript
23 lines
526 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "AutomatizaSE Portal",
|
|
description: "Portal de integrações WhatsApp e Google Calendar",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="pt-BR" className="dark">
|
|
<body className={`${inter.className} bg-gray-900`}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|