|
|
|
|
@@ -1,58 +1,20 @@
|
|
|
|
|
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 "../styles/globals.css";
|
|
|
|
|
|
|
|
|
|
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"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "ContractAI - AI Contract Management for Agencies", description: "Automate contract creation and management for agencies. Generate agreements in minutes, streamline approvals, and close deals faster with AI-powered ContractAI.", keywords: "contract management, AI contracts, agency software, agreement automation, contract automation, legal tech, SaaS", metadataBase: new URL("https://contractai.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://contractai.com"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "ContractAI - Contracts in Minutes, Not Weeks", description: "AI-powered contract management built for agencies. Automate drafting, streamline approvals, and close deals faster.", url: "https://contractai.com", siteName: "ContractAI", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXsmTipBuNOhrYfiH4stN7Fgle/a-sleek-modern-saas-dashboard-interface--1772750489924-1c29c1f5.png", alt: "ContractAI Platform Dashboard"},
|
|
|
|
|
],
|
|
|
|
|
type: "website"},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "ContractAI - Contracts in Minutes, Not Weeks", description: "AI-powered contract management built for agencies. Automate drafting, streamline approvals, and close deals faster.", images: [
|
|
|
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXsmTipBuNOhrYfiH4stN7Fgle/a-sleek-modern-saas-dashboard-interface--1772750489924-1c29c1f5.png"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "ContractAI - AI-Powered Contract Management for Agencies", description: "Automate contract creation, streamline approvals, and close deals faster with ContractAI's AI-powered agreement platform built for modern agencies."};
|
|
|
|
|
|
|
|
|
|
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}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|