From d5aaeb78e9ae61b393e699a82ff50cf1a09339d0 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 09:54:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a1fc38e..28651c9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Moloni Manager | Tenha tudo sob controlo", description: "Aceda e controle o seu negócio em tempo real. Moloni Manager garante acesso à informação com faturas, inventário, clientes e mais.", keywords: "moloni, faturação, gestão negócio, invoicing, inventory, business management, software portugal", metadataBase: new URL("https://www.moloni.pt"), - alternates: { - canonical: "https://www.moloni.pt"}, - openGraph: { - title: "Moloni Manager | Controle seu Negócio em Tempo Real", description: "Software de gestão empresarial com faturas, inventário, e análises financeiras.", siteName: "Moloni", type: "website", url: "https://www.moloni.pt", images: [ - { - url: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147904143.jpg", alt: "Moloni Manager dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Moloni Manager | Controle seu Negócio", description: "Software profissional de gestão para o seu negócio português", images: ["http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147904143.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Moloni Manager", description: "Gerencie todo o seu negócio em tempo real com Moloni Manager"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}