Skip to content

Commit 91c80b4

Browse files
committed
Update contact link in Results page from mailto to an internal anchor.
1 parent 957e8fa commit 91c80b4

2 files changed

Lines changed: 2 additions & 90 deletions

File tree

resources/js/Pages/ChatV2/Index.jsx

Lines changed: 1 addition & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -396,22 +396,7 @@ export default function LandingSearchPage() {
396396

397397

398398

399-
{/* Showcase Section */}
400-
<section className="py-20 px-4 bg-slate-50 border-b border-slate-100">
401-
<div className="container mx-auto max-w-5xl">
402-
<div className="text-center mb-12 space-y-3">
403-
<h3 className="text-3xl md:text-5xl font-black text-slate-900 tracking-tight">
404-
نتائج <span className="text-blue-600">حقيقية</span> من الأداة
405-
</h3>
406-
<p className="text-slate-500 text-base md:text-lg max-w-2xl mx-auto font-medium">
407-
عينة من مصطلحات جرى البحث عنها فعلياً — اضغط على أي صف لعرض الإجابة الكاملة.
408-
</p>
409-
</div>
410399

411-
{/* Table */}
412-
<ShowcaseTable />
413-
</div>
414-
</section>
415400

416401
{/* Methodology Section */}
417402

@@ -675,67 +660,6 @@ export default function LandingSearchPage() {
675660
</div>
676661
</section>
677662

678-
{/* Institutional Support Section */}
679-
<section className="py-24 px-4 bg-slate-50 border-b border-slate-100 overflow-hidden relative">
680-
{/* Background accent */}
681-
<div className="absolute top-0 left-0 w-[500px] h-[500px] bg-indigo-50/50 rounded-full blur-[100px] pointer-events-none -translate-y-1/2 -translate-x-1/2" />
682-
683-
<div className="container mx-auto max-w-6xl relative z-10">
684-
<div className="grid grid-cols-1 lg:grid-cols-[1fr_500px] gap-12 lg:gap-16 items-center" dir="rtl">
685-
686-
{/* Text Content */}
687-
<div className="space-y-8 text-right order-2 lg:order-1">
688-
<div className="space-y-4">
689-
<div className="inline-flex items-center gap-2 px-3 py-1.5 rounded-full bg-indigo-50 text-indigo-700 text-sm font-bold border border-indigo-100 w-fit">
690-
<Building2 className="h-4 w-4" />
691-
دعم أكاديمي ورؤية مشتركة
692-
</div>
693-
<h3 className="text-3xl md:text-5xl font-black text-slate-900 tracking-tight leading-tight">
694-
خطوات واثقة نحو <span className="text-transparent bg-clip-text bg-gradient-to-r from-indigo-600 to-blue-600">أرض الواقع</span>
695-
</h3>
696-
<p className="text-slate-600 text-lg leading-relaxed font-medium">
697-
في سعينا للخروج بالمشروع من تواجده الرقمي إلى أرض الواقع، توجت مساعينا بزيارة <strong className="text-indigo-700 font-black">المجلس الأعلى للغة العربية</strong> يوم 16 ديسمبر 2025.
698-
</p>
699-
<p className="text-slate-600 text-lg leading-relaxed font-medium">
700-
تشرفنا بعرض المشروع على كل من البروفيسور صالح بلعيد، الدكتور كبير بن عيسى، والدكتورة حاج سليمان، مستفيدين من توجيهاتهم ونصائحهم القيمة حول المشروع وتوجهاته المستقبلية.
701-
</p>
702-
</div>
703-
704-
<div className="bg-white border border-slate-100 rounded-2xl p-6 shadow-sm">
705-
<h4 className="flex items-center gap-2 font-black text-slate-800 mb-3 justify-start">
706-
تطلعاتنا المستقبلية
707-
<Target className="h-5 w-5 text-indigo-600" />
708-
</h4>
709-
<p className="text-slate-600 text-sm leading-relaxed font-medium text-right">
710-
نطمح لزيارة مختلف المجامع العربية بهدف التعريف بالمشروع وطلب الدعم في مساعينا الهادفة لتوحيد المصطلحات في مجال المعلوماتية، عبر <strong className="text-indigo-600">منهجية الأكثر إستعمالا</strong> لحفظ الهوية اللغوية ومواكبة الحداثة.
711-
</p>
712-
</div>
713-
</div>
714-
715-
{/* Image Showcase */}
716-
<div className="order-1 lg:order-2 relative">
717-
<div className="absolute inset-0 bg-gradient-to-tr from-indigo-600 to-blue-500 rounded-[2.5rem] transform -rotate-3 scale-105 opacity-15 blur-xl" />
718-
<div className="relative rounded-[2.5rem] overflow-hidden shadow-2xl shadow-indigo-900/10 border-4 border-white bg-slate-100 aspect-[4/5] sm:aspect-auto sm:h-[600px] w-full group">
719-
<img
720-
src="/images/majliss.jpg"
721-
alt="زيارة المجلس الأعلى للغة العربية"
722-
className="w-full h-full object-cover group-hover:scale-105 transition-transform duration-700"
723-
/>
724-
{/* Overlay Gradient (bottom up) */}
725-
<div className="absolute inset-0 bg-gradient-to-t from-slate-900/80 via-slate-900/20 to-transparent pointer-events-none" />
726-
<div className="absolute bottom-6 right-6 left-6 text-white text-right pointer-events-none" dir="rtl">
727-
<p className="font-black text-xl drop-shadow-md">المجلس الأعلى للغة العربية</p>
728-
<p className="text-white/80 text-sm font-bold mt-1.5 flex items-center gap-1.5">
729-
<Calendar className="h-4 w-4" />
730-
16 ديسمبر 2025
731-
</p>
732-
</div>
733-
</div>
734-
</div>
735-
736-
</div>
737-
</div>
738-
</section>
739663

740664
{/* Support Project - Ko-Fi Section */}
741665
<section id="community" className="py-20 px-4 bg-slate-50 border-b border-slate-100 relative overflow-hidden">
@@ -768,7 +692,7 @@ export default function LandingSearchPage() {
768692
<svg className="w-6 h-6 text-[#FF5E5B] group-hover:scale-110 transition-transform" fill="currentColor" viewBox="0 0 24 24">
769693
<path d="M23.881 8.948c-.773-4.085-4.859-4.593-4.859-4.593H.723c-.604 0-.679.798-.679.798s-.082 7.324-.022 11.822c.164 2.424 2.586 2.672 2.586 2.672s8.267-.023 11.966-.049c2.438-.426 2.683-2.566 2.658-3.734 4.352.24 7.422-2.831 6.649-6.916zm-11.062 3.511c-1.246 1.453-4.011 3.976-4.011 3.976s-.121.119-.31.023c-.076-.057-.108-.09-.108-.09-.443-.441-3.368-3.049-4.061-4.3-.037-.046-.045-.086-.045-.086-.154-.487-.09-1.261.343-1.611l.092-.064c.334-.207 1.055-.224 1.454.004l.033.024c.319.263 1.636 1.54 1.954 1.83.21-.212 1.604-1.503 1.928-1.78l.068-.052c.451-.274 1.258-.292 1.631-.05l.078.06c.404.372.502 1.155.305 1.625l-.039.083c-.092.148-.27.279-.27.279v-.006zm7.842 2.059c-1.077 1.07-2.736.8-2.736.8v-3.829c.854 0 2.613-.23 3.321.465.748.747.491 2.476-.585 2.564z" />
770694
</svg>
771-
<span>اشترِ لنا قهوة ☕</span>
695+
<span>ادعمنا</span>
772696
</a>
773697
</div>
774698
<p className="text-white/70 text-sm font-medium mt-4">ندعم جميع بطاقات الدفع عبر منصة Ko-fi الآمنة</p>
@@ -797,18 +721,6 @@ export default function LandingSearchPage() {
797721
نحن هنا للاستماع. سواء كان سؤالاً حول المشروع، اقتراحاً للتحسين، أو رغبة في المساهمة، لا تتردد في مراسلتنا.
798722
</p>
799723
</div>
800-
801-
<div className="flex flex-col gap-4">
802-
<a href="mailto:contact@example.com" className="flex items-center gap-4 p-4 rounded-2xl bg-white border border-slate-100 shadow-sm hover:shadow-md hover:border-blue-100 transition-all group">
803-
<div className="w-12 h-12 rounded-xl bg-blue-50 flex items-center justify-center text-blue-600 group-hover:scale-110 transition-transform">
804-
<Mail className="h-6 w-6" />
805-
</div>
806-
<div className="text-right">
807-
<p className="text-xs font-bold text-slate-400 uppercase tracking-wider mb-0.5">البريد الإلكتروني</p>
808-
<p className="font-bold text-slate-800 group-hover:text-blue-600 transition-colors">contact@example.com</p>
809-
</div>
810-
</a>
811-
</div>
812724
</div>
813725

814726
{/* Contact Form Card */}

resources/js/Pages/ChatV2/Results.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ export default function Results({ q, initialChartData }) {
476476
</Link>
477477

478478
<div className="w-px h-4 bg-slate-200"></div>
479-
<a href="mailto:contact@taarib.com" className="h-8 px-3 flex items-center gap-2 text-sm font-bold text-slate-500 hover:text-blue-600 hover:bg-blue-50 rounded-full transition-all group">
479+
<a href="/#contact" className="h-8 px-3 flex items-center gap-2 text-sm font-bold text-slate-500 hover:text-blue-600 hover:bg-blue-50 rounded-full transition-all group">
480480
<Mail className="h-3.5 w-3.5 group-hover:scale-110 transition-transform" />
481481
<span>تواصل معنا</span>
482482
</a>

0 commit comments

Comments
 (0)