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
+}
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}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/poets/page.tsx b/src/app/poets/page.tsx
index d337f2d..6eaeb97 100644
--- a/src/app/poets/page.tsx
+++ b/src/app/poets/page.tsx
@@ -24,66 +24,66 @@ export default function PoetsPage() {
);
-}
\ No newline at end of file
+}