Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function index(Request $request): View
'url' => '/dream-jobs-in-digital',
'style_color' => 'background-image: linear-gradient(36.92deg, #1C4DA1 20.32%, #0040AE 28.24%);',
'btn_lang' => 'home.get_involved',
], */
],
[
'title' => 'home.banner5_title',
'description' => 'home.banner5_description',
Expand All @@ -25,7 +25,7 @@ public function index(Request $request): View
'btn_lang' => 'home.learn_more',
'url2' => null,
'btn2_lang' => null
],
],*/
[
'title' => 'home.banner4_title',
'description' => 'home.banner4_description',
Expand Down Expand Up @@ -61,6 +61,15 @@ public function index(Request $request): View
'btn_lang' => 'home.meet_our_community',
'url2' => null,
'btn2_lang' => null
],
[
'title' => 'home.banner7_title',
'description' => 'home.banner7_description',
'url' => '/blog/festive-acts-of-digital-kindness',
'style_color' => 'background: linear-gradient(36.92deg, rgb(51, 194, 233) 20.32%, rgb(0, 179, 227) 28.24%);',
'btn_lang' => 'home.learn_more',
'url2' => null,
'btn2_lang' => null
]
]);
return view('static.home', compact('activities'));
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions resources/lang/en/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,7 @@

'banner6_title' => 'Cisco EMEA networking Academy Cup',
'banner6_description' => 'Join the learn-a-thon to build your networking and cybersecurity skills and earn the chance to access exclusive content created with Real Madrid on the network technologies powering the Santiago Bernabéu Stadium. Register by the 31st of December!',

'banner7_title' => 'Festive acts of digital kindness',
'banner7_description' => 'The holiday season is all about connection, kindness, and giving. But gifts don\'t have to come wrapped in paper with a bow on top. This December, we\'re inviting you to join us for something special: Festive Acts of Digital Kindness. ',
];
2 changes: 1 addition & 1 deletion resources/views/hackathons/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class="animation-element move-background duration-[1.5s] absolute z-0 lg:-bottom
</div>
<div class="flex-1">
<p class="text-dark-blue text-[22px] md:text-4xl font-medium font-['Montserrat'] mb-6 p-0">
EU Code Week Hackathon 2025
EU Code Week Hackathons 2025-26
</p>
<p class="text-slate-500 font-normal text-[16px] md:text-xl leading-[22px] md:leading-[30px] p-0 mb-6">
EU Code Week Hackathons share a common theme that strengthens connection and belonging among young innovators across Europe. The central theme for the 2025 edition is <strong>From Code to Community: Bridging Digital Skills and Social Impact.</strong></span>.
Expand Down
3 changes: 2 additions & 1 deletion resources/views/static/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,12 @@ class="absolute top-0 -translate-y-1/2 bg-yellow py-3 md:py-4 px-8 md:px-10 roun

@php
$backgroundImages = [
asset('/images/csr/csr_about1.jpg'),
//asset('/images/csr/csr_about1.jpg'),
asset('/images/dream-jobs/dream_jobs_bg.png'),
asset('/images/digital-girls/banner_bg.png'),
asset('images/homepage/slide1.png'),
asset('images/search/search_bg_lg_2.jpeg'),
asset('/images/homepage/festive_acts_of_digital_kindness.png'),
];
@endphp

Expand Down
Loading