Merge version_2 into main #4
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_Sans } 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 publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AI Tools Suite - Automation with Balanced Workloads", description: "Discover AI-powered tools designed for limited work and balanced team workloads. Automate tasks, streamline workflows, and boost productivity.", keywords: "AI tools, automation, workload balancing, productivity, team efficiency", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "AI Tools Suite - Transform Your Team's Productivity", description: "AI-powered automation with intelligent workload balancing for modern teams.", siteName: "AI Tools Suite", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWwCDj5m0VizwdvWMhA3I2T0DE/a-modern-clean-ai-tools-dashboard-interf-1772721614107-16ee8f2a.png", alt: "A modern, clean AI tools dashboard interface showing multiple productivity applications and AI-power"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "AI Tools Suite - Automation & Balance", description: "Powerful AI tools designed to reduce workload and balance team productivity.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWwCDj5m0VizwdvWMhA3I2T0DE/a-modern-clean-ai-tools-dashboard-interf-1772721614107-16ee8f2a.png"],
|
||||
},
|
||||
};
|
||||
title: "AI Tools Suite", description: "Automate Routine Work, Reclaim Team Time"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
title="AI Tools for Everyone, Limited Work Required"
|
||||
title="Automate Routine Work, Reclaim Team Time"
|
||||
description="Discover a comprehensive suite of AI-powered tools designed for teams with balanced workloads. Automate tasks, reduce manual effort, and focus on what matters most."
|
||||
tag="AI-Powered Platform"
|
||||
tagIcon={Sparkles}
|
||||
|
||||
Reference in New Issue
Block a user