From 35577e91b6c9d61cd7909d8a2643111ff6a2b440 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 12:45:15 +0000 Subject: [PATCH 1/3] Update src/app/eras/page.tsx --- src/app/eras/page.tsx | 58 +++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/src/app/eras/page.tsx b/src/app/eras/page.tsx index b62ef0b..980f0f1 100644 --- a/src/app/eras/page.tsx +++ b/src/app/eras/page.tsx @@ -24,22 +24,22 @@ export default function ErasPage() {
@@ -75,39 +75,39 @@ export default function ErasPage() {
); -} \ No newline at end of file +} -- 2.49.1 From 958aba5ec223b30e9fd6770e35965da0c566b460 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 12:45:16 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 40 ++++++++++------------------------------ 1 file changed, 10 insertions(+), 30 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e465478..12091e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,42 +1,23 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Arabic Poetry Archive - Greatest Poets & Poems Across Six Eras", - description: "Explore the finest Arabic poetry from pre-Islamic times to the Ottoman era. Discover the greatest poets and their masterworks across six golden periods of Islamic literature.", - keywords: ["Arabic poetry", "classical Arabic literature", "Islamic poetry", "Imru al-Qais", "Al-Mutanabbi", "Walladah", "Fuzuli", "poetry archive", "Abbasid poetry", "Umayyad poetry", "Andalusian poetry"], - openGraph: { - title: "Arabic Poetry Archive - Six Eras of Literary Brilliance", - description: "Discover masterworks from the greatest Arabic poets across pre-Islamic, Umayyad, Abbasid, Andalusian, Mamluk, and Ottoman eras.", - siteName: "Arabic Poetry Archive" - }, - twitter: { - card: "summary_large_image", - title: "Arabic Poetry Archive", - description: "Explore classical Arabic poetry from six golden eras of Islamic literature" - } -}; + title: "Arabic Poetry Archive", description: "Explore the rich heritage of Arabic poetry across six golden eras"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}