complete story 13.2 and made the logo bigger

This commit is contained in:
Naser Mansour
2026-01-04 22:43:26 +02:00
parent b5ef8f9d28
commit d9a35a19d0
4 changed files with 81 additions and 41 deletions
+7 -4
View File
@@ -2,10 +2,13 @@
@php
$sizes = [
'sm' => 'h-10 w-10', // 40px - Mobile nav
'md' => 'h-12 w-12', // 48px - Desktop nav
'lg' => 'h-16 w-16', // 64px - Footer
'xl' => 'h-20 w-20', // 80px - Auth pages
'sm' => 'h-10 w-10', // 40px - Mobile nav
'md' => 'h-12 w-12', // 48px - Desktop nav
'lg' => 'h-16 w-16', // 64px - Footer
'xl' => 'h-20 w-20', // 80px - Auth pages mobile
'2xl' => 'h-48 w-48', // 192px - Large display
'hero' => 'h-64 w-64', // 256px - Hero/splash
'full' => 'h-[50vh] w-auto max-w-[80%]', // Half viewport - Auth split panel
];
$sizeClass = $sizes[$size] ?? $sizes['md'];
@endphp