feat: implement page template hero functionality with dynamic image handling and localization support for enhanced visual presentation
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Statik sayfa şablonları için hero görselleri.
|
||||
* Blade şablonları ve Page modeli aynı kaynağı kullanır.
|
||||
*/
|
||||
return [
|
||||
'heroes' => [
|
||||
'services.app-development' => [
|
||||
'image' => 'assets/img/photos/truncgil-mobile-app.png',
|
||||
'webp' => 'assets/img/photos/truncgil-mobile-app.webp',
|
||||
'width' => 735,
|
||||
'height' => 735,
|
||||
],
|
||||
'neler-yapariz' => [
|
||||
'image' => 'assets/img/illustrations/3d11.png',
|
||||
'width' => 800,
|
||||
'height' => 1080,
|
||||
],
|
||||
],
|
||||
|
||||
'labels' => [
|
||||
'services.app-development' => 'Uygulama Geliştirme',
|
||||
'neler-yapariz' => 'Neler Yaparız',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user