import type {Metadata} from "next";
import {Inter} from "next/font/google";
import "./globals.css";
import "animate.css";

import config from "../../tailwind.config";

const inter = Inter({subsets: ["latin"]});

export const metadata: Metadata = {
	title: "MiPyme Expert",
	description:
		"MiPyme Expert, plataforma para evaluar tu nivel de madurez digital en tu empresa",
	openGraph: {
		type: "website",
		locale: "es_ES",
		url: "https://mipyme-expert.cymetria.com/",
		siteName: "MiPyme Expert",
	},
};

export default function RootLayout({children}: {children: React.ReactNode}) {
	return (
		<html lang="es" data-theme="mytheme">
			<body className={inter.className}>{children}</body>
		</html>
	);
}
