71 lines
2.5 KiB
TypeScript
71 lines
2.5 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Inter_Tight } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'QuickBooks - Smart Business Management',
|
|
description: 'Get QuickBooks subscriptions to manage accounting, track expenses, and prepare invoices with ease. Integrated financial solutions for your business growth.',
|
|
keywords: ["QuickBooks, اشتراكات, محاسبة, إدارة مالية, برامج أعمال, فواتير, تقارير مالية, SaaS"],
|
|
openGraph: {
|
|
"title": "QuickBooks - إدارة أعمالك بذكاء",
|
|
"description": "احصل على اشتراكات QuickBooks لإدارة المحاسبة، تتبع النفقات، وإعداد الفواتير بسهولة. حلول مالية متكاملة لنمو عملك.",
|
|
"url": "https://www.yourquickbookssite.com",
|
|
"siteName": "QuickBooks",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/business-person-looking-finance-graphs_23-2150461308.jpg",
|
|
"alt": "لوحة تحكم QuickBooks"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "QuickBooks - إدارة أعمالك بذكاء",
|
|
"description": "احصل على اشتراكات QuickBooks لإدارة المحاسبة، تتبع النفقات، وإعداد الفواتير بسهولة. حلول مالية متكاملة لنمو عملك.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/business-person-looking-finance-graphs_23-2150461308.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const interTight = Inter_Tight({
|
|
variable: "--font-inter-tight",
|
|
subsets: ["latin"],
|
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${interTight.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|