From 622fc6841ab59daaacc4c3c83353d776640bda2b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:53:54 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f22853..b625c88 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,13 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { title: "HumanText AI - Convert AI Text to Human Writing", description: "Transform AI-generated text into natural human-written content with advanced humanization algorithms. Pass AI detection, maintain meaning, and choose your tone.", keywords: "AI humanizer, text converter, AI to human, content humanization, AI detection, humanize AI text", metadataBase: new URL("https://humantext-ai.com"), alternates: { @@ -35,7 +19,8 @@ export const metadata: Metadata = { ], }, twitter: { - card: "summary_large_image", title: "HumanText AI - Convert AI Text to Human Writing", description: "Transform AI-generated text into natural human-written content instantly.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVu2GGvbvb8MZVdZxJW51nb7zW/a-modern-saas-hero-background-showing-a--1772775904244-c9dec283.png"], + card: "summary_large_image", title: "HumanText AI - Convert AI Text to Human Writing", description: "Transform AI-generated text into natural human-written content instantly.", images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVu2GGvbvb8MZVdZxJW51nb7zW/a-modern-saas-hero-background-showing-a--1772775904244-c9dec283.png"], }, robots: { index: true, @@ -51,9 +36,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1