diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index fcfa045..47e6fde 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-