Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-05 17:54:42 +00:00
2 changed files with 12 additions and 52 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "AccountingAI - AI-Powered Accounting Automation", description: "Transform your accounting with AI. Automate invoice processing, expense categorization, and reporting. Save 20+ hours weekly. Try free—no credit card required.", keywords: "AI accounting, accounting automation, invoice processing, expense management, financial software, accounting AI assistant", metadataBase: new URL("https://accountingai.example.com"),
alternates: {
canonical: "https://accountingai.example.com"
},
openGraph: {
title: "AccountingAI - Intelligent Accounting Automation", description: "Automate your accounting workflows with AI. Process invoices instantly, categorize expenses accurately, and generate reports automatically.", type: "website", siteName: "AccountingAI", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXI4lGmP2u47s0VdGIUYIQVo7R/a-modern-accounting-software-dashboard-i-1772732389172-8f17edae.png", alt: "AccountingAI Dashboard"
}
]
},
twitter: {
card: "summary_large_image", title: "AccountingAI - AI-Powered Accounting", description: "Save 20+ hours weekly on accounting. Automate invoices, expenses, and reporting with advanced AI.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXI4lGmP2u47s0VdGIUYIQVo7R/a-modern-accounting-software-dashboard-i-1772732389172-8f17edae.png"]
},
robots: {
index: true,
follow: true
}
};
title: "AccountingAI - AI-Powered Accounting Automation", description: "Automate your financial workflows with AI-powered accounting. Process invoices, categorize expenses, and generate reports in seconds."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -127,10 +127,10 @@ export default function LandingPage() {
tagIcon={TrendingUp}
tagAnimation="slide-up"
metrics={[
{ id: "1", icon: Clock, title: "Time Saved", value: "20+ Hours/Week" },
{ id: "2", icon: DollarSign, title: "Cost Reduction", value: "60% Lower Costs" },
{ id: "3", icon: Users, title: "Active Users", value: "50,000+" },
{ id: "4", icon: CheckCircle, title: "Accuracy Rate", value: "99.9%" }
{ id: "1", icon: CheckCircle, title: "Accuracy Rate", value: "99.9%" },
{ id: "2", icon: Clock, title: "Time Saved", value: "20+ Hours/Week" },
{ id: "3", icon: DollarSign, title: "Cost Reduction", value: "60% Lower Costs" },
{ id: "4", icon: Users, title: "Active Users", value: "50,000+" }
]}
animationType="slide-up"
textboxLayout="default"
@@ -268,4 +268,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}