[
'title' => 'About Us',
'subtitle' => 'Learn more about our mission, vision, and values.',
'lang_name' => 'العربية',
'lang_code' => 'ar',
'hero_title' => 'About Our Organization',
'hero_sub' => 'Dedicated to making a difference in the world.',
'admin_panel' => 'Admin Panel',
'home' => 'Home',
'about_us' => 'About Us',
'contact_us' => 'Contact Us',
],
'ar' => [
'title' => 'من نحن',
'subtitle' => 'تعرف على المزيد حول مهمتنا ورؤيتنا وقيمنا.',
'lang_name' => 'English',
'lang_code' => 'en',
'hero_title' => 'حول منظمتنا',
'hero_sub' => 'مكرسون لإحداث فرق في العالم.',
'admin_panel' => 'لوحة التحكم',
'home' => 'الرئيسية',
'about_us' => 'من نحن',
'contact_us' => 'اتصل بنا',
]
];
$t = $texts[$lang];
// Database fetch
$pdo = db();
$profile = $pdo->query("SELECT * FROM org_profile LIMIT 1")->fetch(PDO::FETCH_ASSOC);
require_once 'includes/header.php';
?>
= $t['hero_title'] ?>
= $t['hero_sub'] ?>
" . ($lang === 'ar' ? 'لم يتم إضافة المحتوى بعد. يرجى إضافته من لوحة التحكم.' : 'Content has not been added yet. Please add it from the admin panel.') . "";
} else {
echo $content;
}
?>