3 Commits

Author SHA1 Message Date
f70fbca86d Update src/app/page.tsx 2026-03-05 23:19:34 +00:00
9685dcf3be Update src/app/layout.tsx 2026-03-05 23:19:33 +00:00
c06f35da2f Merge version_2 into main
Merge version_2 into main
2026-03-05 23:18:09 +00:00
2 changed files with 8 additions and 47 deletions

View File

@@ -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>
);
}

View File

@@ -48,7 +48,7 @@ export default function LandingPage() {
description="Contracts in Minutes, Not Weeks. AI-powered agreement creation and management built for agencies. Automate drafting, streamline approvals, and close deals faster—all in one platform."
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Start Free Trial", href: "/contact" },
{ text: "Generate Your First Contract Free", href: "/contact" },
{ text: "Watch Demo", href: "#" },
]}
buttonAnimation="slide-up"