Skip to content

Commit

Permalink
Merge pull request #97 from frontChapter/develop
Browse files Browse the repository at this point in the history
feat: :sparkles add festival images
  • Loading branch information
lokiwich authored Mar 11, 2024
2 parents 3c61a62 + 62c030d commit 220de18
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 10 deletions.
4 changes: 4 additions & 0 deletions lang/fa.json
Original file line number Diff line number Diff line change
Expand Up @@ -1014,6 +1014,10 @@
"Discount amount": "میزان تخفیف",
"Participants in Front Chapter conference 2024": "شرکت کنندگان در همایش فرانت‌چپتر ۱۴۰۲",
"Expired at": "تاریخ انقضا",
"Complete archive of images of the 2024 conference": "آرشیو کامل تصاویر همایش ۱۴۰۲",
"Archive of the night before the conference": "آرشیو شب قبل همایش",
"Archives of the day of the conference": "آرشیو روز همایش",
"Do not avoid making memes and mentioning @frontchapter when publishing.": "از ساخت <b>میم</b> و منشن کردن <a class='text-primary-500 hover:text-primary-600 dark:hover:text-primary-400' href='instagram.com/frontchapter' dir='ltr'>@frontchapter</a> در هنگام انتشار <b class='text-xl'>نپرهیزید</b>.",
"": "",
"test": "test"
}
Binary file added public/images/conference-night.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/conference.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion resources/views/components/navigation-menu/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class="inline-flex items-center gap-2 text-sm font-medium leading-4 transition d
@guest
<div class="flex items-center gap-2">
<x-button light wire:navigate :href="route('login')" :label="__('Login')" />
<x-button icon="user-add" primary wire:navigate :href="route('register')" :label="__('Register')" />
<x-button class="hidden md:flex" icon="user-add" primary wire:navigate :href="route('register')" :label="__('Register')" />
</div>
@endguest
</div>
Expand Down
46 changes: 37 additions & 9 deletions resources/views/livewire/reserved.blade.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,43 @@
<x-slot name="header">
<h2 class="text-lg font-semibold leading-tight sm:text-xl text-secondary-800 dark:text-secondary-200">
{{ __('تصاویر همایش ۱۴۰۲') }}
🔥 {{ __('Complete archive of images of the 2024 conference') }}
</h2>
</x-slot>

<div class="container mx-auto my-8 md:h-[45rem] max-h-full">
<x-card cardClasses="h-full" class="flex flex-col items-center justify-center gap-8">
<img class="mx-auto rounded-xl" src="{{ asset('images/happy-carrot.jpg') }}">
<div class="flex flex-col gap-2 text-center">
<h2 class="text-3xl font-bold">محل الصاق تصاویر امسال</h2>
<p class="">بزودی در این مکان تصاویر همایش ثبت می‌گردد</p>
</div>
</x-card>
<div class="container mx-auto my-8 max-w-3xl md:h-[45rem] max-h-full">
<div class="grid grid-cols-1 gap-3 sm:grid-cols-2">
<a href="https://drive.google.com/drive/folders/1eforrcIR89dXlsmip1MnhUVESLymspzc?usp=sharing" class="col-span-1 transition-transform hover:scale-105 group">
<x-card cardClasses="h-full" class="flex flex-col items-center justify-center gap-8">
<x-slot:header>
<img class="w-full mx-auto rounded-t-xl" src="{{ asset('images/conference-night.jpg') }}">
</x-slot:header>
<div class="flex items-center justify-center w-full gap-2 px-2 text-center sm:justify-between">
<h2 class="text-xl font-bold lg:text-2xl">
{{ __('Archive of the night before the conference') }}
</h2>
@svg( app()->getLocale() === 'fa' ? 'heroicon-o-arrow-left' : 'heroicon-o-arrow-right', 'hidden sm:block w-8 me-8
opacity-0 group-hover:me-0 group-hover:w-8 group-hover:opacity-100
transition-all')
</div>
</x-card>
</a>
<a href="https://drive.google.com/drive/folders/12PUZbSPcSB5V_itup4Qi7gN8sEXT4Shr?usp=sharing" class="col-span-1 transition-transform hover:scale-105 group">
<x-card cardClasses="h-full" class="flex flex-col items-center justify-center gap-8">
<x-slot:header>
<img class="w-full mx-auto rounded-t-xl" src="{{ asset('images/conference.jpg') }}">
</x-slot:header>
<div class="flex items-center justify-center w-full gap-2 px-2 text-center sm:justify-between">
<h2 class="text-xl font-bold lg:text-2xl">
{{ __('Archives of the day of the conference') }}
</h2>
@svg( app()->getLocale() === 'fa' ? 'heroicon-o-arrow-left' : 'heroicon-o-arrow-right', 'hidden sm:block w-8 me-8
opacity-0 group-hover:me-0 group-hover:w-8 group-hover:opacity-100
transition-all')
</div>
</x-card>
</a>
</div>
<x-alert class="mt-10" icon="information-circle">
<p class="text-lg">{!! __('Do not avoid making memes and mentioning @frontchapter when publishing.') !!}</p>
</x-alert>
</div>

0 comments on commit 220de18

Please sign in to comment.