8 Commits

Author SHA1 Message Date
973c368094 Merge version_3 into main
Merge version_3 into main
2026-03-10 10:06:58 +00:00
90dd531105 Update src/app/page.tsx 2026-03-10 10:06:54 +00:00
867f15b8ed Update src/app/layout.tsx 2026-03-10 10:06:53 +00:00
de06d70e36 Merge version_2 into main
Merge version_2 into main
2026-03-10 09:54:16 +00:00
702eeae0ec Update src/app/page.tsx 2026-03-10 09:54:12 +00:00
d5aaeb78e9 Update src/app/layout.tsx 2026-03-10 09:54:11 +00:00
4371c66958 Merge version_1 into main
Merge version_1 into main
2026-03-10 09:51:20 +00:00
0abf9c798a Merge version_1 into main
Merge version_1 into main
2026-03-10 09:50:11 +00:00
2 changed files with 10 additions and 48 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="pt-PT">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -42,7 +42,7 @@ export default function MoloniLandingPage() {
tag="Real-Time Control"
tagIcon={Zap}
tagAnimation="slide-up"
title="Tenha tudo sob controlo"
title="Gerencie Todo o Seu Negócio em Tempo Real"
description="Aceda e controle o seu negócio em tempo real. A Moloni Manager garante o acesso à informação como nenhuma outra aplicação no mercado. Gerencie faturas, inventário, clientes e muito mais em um único lugar."
background={{ variant: "plain" }}
mediaItems={[
@@ -54,7 +54,7 @@ export default function MoloniLandingPage() {
},
]}
rating={5}
ratingText="Trusted by Portuguese businesses"
ratingText="Trusted by 50K+ Portuguese Businesses"
buttons={[
{ text: "Comece Gratuitamente", href: "#contact" },
{ text: "Ver Demo", href: "#features" },
@@ -219,4 +219,4 @@ export default function MoloniLandingPage() {
</div>
</ThemeProvider>
);
}
}