From e0da29f38ce94c008731134855aa9705a2303cfd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 12:17:24 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c3a5b07..84a353b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -17,7 +17,8 @@ export const metadata: Metadata = { ], }, twitter: { - card: "summary_large_image", title: "Arabic Poetry Heritage", description: "Explore classical Arabic poetry across five historical eras.", image: "http://img.b2bpic.net/free-photo/pirate-artifacts-arrangement-still-life_23-2150426415.jpg"}, + 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"] + }, }; export default function RootLayout({ -- 2.49.1 From 01c4042a4928c30d105172d577ef14ccb14a8e88 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 12:17:24 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 15a4bec..3e3a1f7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -42,22 +42,22 @@ const heroButtons = [ const eraFeatures = [ { - title: "Pre-Islamic Era (Jahiliyyah)", description: "The age of tribal poets and oral tradition, celebrating courage, honor, and desert life.", bentoComponent: "reveal-icon", icon: Feather, + title: "Pre-Islamic Era (Jahiliyyah)", description: "The age of tribal poets and oral tradition, celebrating courage, honor, and desert life.", bentoComponent: "reveal-icon" as const, icon: Feather, }, { - title: "Quranic and Early Islamic", description: "Poetry transformed by Islamic values, emphasizing spiritual themes and divine guidance.", bentoComponent: "reveal-icon", icon: Sparkles, + title: "Quranic and Early Islamic", description: "Poetry transformed by Islamic values, emphasizing spiritual themes and divine guidance.", bentoComponent: "reveal-icon" as const, icon: Sparkles, }, { - title: "Umayyad Period (661-750 CE)", description: "Court poetry flourished with sophisticated rhetoric and refined love themes.", bentoComponent: "reveal-icon", icon: Crown, + title: "Umayyad Period (661-750 CE)", description: "Court poetry flourished with sophisticated rhetoric and refined love themes.", bentoComponent: "reveal-icon" as const, icon: Crown, }, { - title: "Abbasid Golden Age (750-1258 CE)", description: "The peak of Arabic poetry with unprecedented innovation, intellectual freedom, and cultural synthesis.", bentoComponent: "reveal-icon", icon: Zap, + title: "Abbasid Golden Age (750-1258 CE)", description: "The peak of Arabic poetry with unprecedented innovation, intellectual freedom, and cultural synthesis.", bentoComponent: "reveal-icon" as const, icon: Zap, }, { - title: "Andalusian Period (711-1492 CE)", description: "Islamic Spain's unique poetic tradition blending Arabic, Berber, and European influences.", bentoComponent: "reveal-icon", icon: Compass, + title: "Andalusian Period (711-1492 CE)", description: "Islamic Spain's unique poetic tradition blending Arabic, Berber, and European influences.", bentoComponent: "reveal-icon" as const, icon: Compass, }, { - title: "Mamluk and Ottoman Eras", description: "Poetry during the Mamluk Sultanate and Ottoman Empire, maintaining classical traditions with new forms.", bentoComponent: "reveal-icon", icon: BookMarked, + title: "Mamluk and Ottoman Eras", description: "Poetry during the Mamluk Sultanate and Ottoman Empire, maintaining classical traditions with new forms.", bentoComponent: "reveal-icon" as const, icon: BookMarked, }, ]; -- 2.49.1