Remove welcome.blade.php and update various views to use translation functions for improved localization support. Changes include updating labels, titles, and alerts across multiple pages to utilize the __('') function, enhancing the application's internationalization capabilities.

This commit is contained in:
2025-07-29 16:39:27 +05:00
parent e927a912e1
commit 834822e182
13 changed files with 87 additions and 364 deletions

View File

@@ -295,10 +295,10 @@ body {
<div class="row">
<div class="col-xl-12">
<div class="breadcrumb__area-content">
<h2>About Us</h2>
<h2>{{ __('About Us') }}</h2>
<ul>
<li><a href="/">Home</a><i class="fa-regular fa-angle-right"></i></li>
<li>About Us</li>
<li><a href="/">{{ __('Home') }}</a><i class="fa-regular fa-angle-right"></i></li>
<li>{{ __('About Us') }}</li>
</ul>
</div>
</div>
@@ -345,7 +345,7 @@ body {
<div class="aspect-video relative">
<video class="w-full h-full object-cover" controls="" poster="{{ asset('storage/' . $aboutSettings->our_story_video_poster) }}">
<source type="video/mp4" src="{{ asset('storage/' . $aboutSettings->our_story_video_source) }}" />
Your browser does not support the video tag.
{{ __('Your browser does not support the video tag.') }}
</video>
</div>
</div>
@@ -396,14 +396,14 @@ body {
<div class="org-chart">
<div class="flex justify-center mb-16">
<div class="org-box org-box-director">
<h3 class="font-bold text-lg">Director</h3>
<h3 class="font-bold text-lg">{{ __('Director') }}</h3>
<p class="text-sm text-gray-500">{{ $aboutSettings->company_structure_director_name }}</p>
</div>
</div>
<div class="flex justify-center mb-16 relative">
<div class="absolute top-[-60px] w-px h-[60px] bg-gray-300"></div>
<div class="org-box org-box-advisor">
<h3 class="font-bold text-lg">Technical Advisor</h3>
<h3 class="font-bold text-lg">{{ __('Technical Advisor') }}</h3>
<p class="text-sm text-gray-500">{{ $aboutSettings->company_structure_advisor_name }}</p>
</div>
</div>
@@ -426,8 +426,8 @@ body {
</section>
<section class="mb-24">
<div class="text-center max-w-3xl mx-auto mb-12">
<h2 class="text-3xl md:text-4xl font-bold tracking-tight mb-4 bg-clip-text text-transparent bg-gradient-to-r from-teal-500 to-purple-600">Our Management</h2>
<p class="text-lg text-gray-600">Meet the leadership team driving our vision forward</p>
<h2 class="text-3xl md:text-4xl font-bold tracking-tight mb-4 bg-clip-text text-transparent bg-gradient-to-r from-teal-500 to-purple-600">{{ __('Our Management') }}</h2>
<p class="text-lg text-gray-600">{{ __('Meet the leadership team driving our vision forward') }}</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
@foreach (App\Models\TeamMember::all() as $member)