removed the scholarship stiff from /about

This commit is contained in:
Naser Mansour 2026-01-11 23:36:28 +02:00
parent 4c992c01f5
commit e8c17305a9
3 changed files with 0 additions and 52 deletions

View File

@ -76,15 +76,4 @@ return [
'التحكيم', 'التحكيم',
'الحل البديل للنزاعات', 'الحل البديل للنزاعات',
], ],
// Scholarship Section
'scholarship_title' => 'طموحنا: منحة ليبرا',
'scholarship_text_1' => 'الفن هو سفير فلسطين التاريخية والشعب الفلسطيني. من خلال منحة ليبرا للقانون والفنون الفلسطينية، تسعى ليبرا لتمكين الطلاب من تقديم رسائل فلسطينية حول العالم.',
'scholarship_text_2' => 'نهدف إلى فتح نقاشات مستمرة حول الوضع والواقع الفلسطيني، وحماية حقوق الملكية الفكرية، وتمكين المشاركة في المعارض الدولية، بدءاً من المنصات الثقافية المحلية.',
'scholarship_aspirations' => [
'تمكين الطلاب من تقديم الرسائل الفلسطينية عالمياً',
'فتح نقاشات مستمرة حول الواقع الفلسطيني',
'حماية حقوق الملكية الفكرية',
'تمكين المشاركة في المعارض المحلية والدولية',
],
]; ];

View File

@ -76,15 +76,4 @@ return [
'Arbitration', 'Arbitration',
'Alternative dispute resolution', 'Alternative dispute resolution',
], ],
// Scholarship Section
'scholarship_title' => 'Our Aspiration: Libra Scholarship',
'scholarship_text_1' => 'Art is the ambassador of Historical Palestine and the Palestinian people. Through the Libra Scholarship for Law and Palestinian Arts, Libra seeks to empower students to present Palestinian messages around the world.',
'scholarship_text_2' => 'We aim to open ongoing discussions about the Palestinian situation and reality, protect intellectual property rights, and enable participation in international exhibitions, starting with local cultural platforms.',
'scholarship_aspirations' => [
'Empowering students to present Palestinian messages globally',
'Opening ongoing discussions about Palestinian reality',
'Protecting intellectual property rights',
'Enabling participation in local and international exhibitions',
],
]; ];

View File

@ -286,34 +286,4 @@ new #[Layout('components.layouts.public')] class extends Component
</div> </div>
</section> </section>
{{-- Scholarship Aspiration Section --}}
<section class="bg-background py-8 sm:py-12 lg:py-[60px] relative overflow-hidden">
{{-- Decorative accent - subtle gold border frame --}}
<div class="absolute inset-4 sm:inset-8 lg:inset-12 border border-accent/20 rounded-lg pointer-events-none"></div>
<div class="container mx-auto px-4 relative">
<h2 class="text-2xl lg:text-3xl font-bold text-text text-center mb-2">
{{ __('about.scholarship_title') }}
</h2>
<div class="w-20 h-1 bg-accent mx-auto mb-8"></div>
<div class="max-w-[900px] mx-auto text-center mb-12">
<p class="text-text/90 text-lg mb-4">
{{ __('about.scholarship_text_1') }}
</p>
<p class="text-text/80">
{{ __('about.scholarship_text_2') }}
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 max-w-5xl mx-auto">
@foreach(__('about.scholarship_aspirations') as $index => $aspiration)
<div class="flex items-center gap-3 text-text/90 {{ $index > 0 ? 'sm:border-s sm:border-text/10 sm:ps-6 lg:ps-6' : '' }}">
<flux:icon name="check-circle" class="w-6 h-6 text-accent flex-shrink-0" />
<span>{{ $aspiration }}</span>
</div>
@endforeach
</div>
</div>
</section>
</div> </div>