83 lines
2.8 KiB
TypeScript
83 lines
2.8 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Montserrat } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const montserrat = Montserrat({
|
|
variable: "--font-montserrat",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "FinTrack - Modern Financial Accounting Software | Dashboard & Reporting",
|
|
description: "FinTrack is a professional financial accounting web application for managing debit and credit transactions with automatic balance calculations, real-time reporting, and bank-grade security.",
|
|
keywords: "accounting software, financial management, transaction tracking, balance sheet, financial reporting, accounting app, accounting dashboard, financial analytics",
|
|
metadataBase: new URL("https://fintrack.io"),
|
|
alternates: {
|
|
canonical: "https://fintrack.io",
|
|
},
|
|
openGraph: {
|
|
title: "FinTrack - Financial Accounting Dashboard",
|
|
description: "Master your finances with precision. Real-time transaction management, automatic balance calculations, and comprehensive reporting.",
|
|
url: "https://fintrack.io",
|
|
siteName: "FinTrack",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ApsEpnvoVCfzsiSOsnU9NcBkEK/a-modern-financial-dashboard-interface-w-1773300822738-d9476245.png",
|
|
alt: "FinTrack Financial Dashboard Interface",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "FinTrack - Financial Accounting Dashboard",
|
|
description: "Professional financial accounting software with real-time transaction management and comprehensive reporting.",
|
|
images: [
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ApsEpnvoVCfzsiSOsnU9NcBkEK/a-modern-financial-dashboard-interface-w-1773300822738-d9476245.png",
|
|
],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |