Update src/app/layout.tsx

This commit is contained in:
2026-03-03 12:26:15 +00:00
parent 4e6b3ec6d0
commit 5d2f24577e

View File

@@ -5,41 +5,19 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = {
title: "Arabic Poetry Heritage - Classical Literature Through The Ages",
description: "Explore five golden eras of Arabic poetry from pre-Islamic verse to the Ottoman period. Discover greatest poets, masterpiece poems, and scholarly resources.",
keywords: "Arabic poetry, Islamic literature, classical poetry, Mu'allaqat, Al-Mutanabbi, Arabic culture, poetry heritage",
metadataBase: new URL("https://arabicpoetry.com"),
alternates: {
canonical: "https://arabicpoetry.com",
},
openGraph: {
title: "Arabic Poetry Heritage",
description: "The timeless voice of Arabic poetry across centuries and civilizations.",
url: "https://arabicpoetry.com",
siteName: "Arabic Poetry Heritage",
type: "website",
images: [
title: "Arabic Poetry Heritage - Classical Literature Through The Ages", description: "Explore five golden eras of Arabic poetry from pre-Islamic verse to the Ottoman period. Discover greatest poets, masterpiece poems, and scholarly resources.", keywords: "Arabic poetry, Islamic literature, classical poetry, Mu'allaqat, Al-Mutanabbi, Arabic culture, poetry heritage", openGraph: {
title: "Arabic Poetry Heritage", description: "The timeless voice of Arabic poetry across centuries and civilizations.", url: "https://arabicpoetry.com", siteName: "Arabic Poetry Heritage", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/decorative-brick-wall-texture-background_23-2147960164.jpg",
alt: "Arabic Poetry Heritage",
},
url: "http://img.b2bpic.net/free-photo/decorative-brick-wall-texture-background_23-2147960164.jpg", alt: "Arabic Poetry Heritage"},
],
},
twitter: {
card: "summary_large_image",
title: "Arabic Poetry Heritage",
description: "Explore classical Arabic poetry across five historical eras.",
images: ["http://img.b2bpic.net/free-photo/pirate-artifacts-arrangement-still-life_23-2150426415.jpg"],
},
robots: {
index: true,
follow: true,
card: "summary_large_image", title: "Arabic Poetry Heritage", description: "Explore classical Arabic poetry across five historical eras.", images: ["http://img.b2bpic.net/free-photo/pirate-artifacts-arrangement-still-life_23-2150426415.jpg"]
},
};
@@ -51,7 +29,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body
className={`${lato.variable} antialiased`}
>
<Tag />
{children}
@@ -1425,4 +1405,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}