Merge version_2 into main #2
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user