Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 622fc6841a | |||
| 41e7209e28 |
@@ -1,29 +1,13 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } 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 "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
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 = {
|
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"),
|
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: {
|
alternates: {
|
||||||
@@ -35,7 +19,8 @@ export const metadata: Metadata = {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
twitter: {
|
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: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
@@ -51,9 +36,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${inter.variable} antialiased`}>
|
||||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user