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
18 changes: 9 additions & 9 deletions resources/views/layout/footer.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<footer class="border-t-[3px] border-primary bg-white">
<div class="py-10 md:py-16 border-b">
<div class="codeweek-container-lg flex flex-col xl:flex-row xl:justify-between">
<div class="py-10 border-b md:py-16">
<div class="flex flex-col codeweek-container-lg xl:flex-row xl:justify-between">
<div class="flex flex-col justify-between">
<div>
<div class="mb-6">
Expand Down Expand Up @@ -32,7 +32,7 @@
<div class="grid md:grid-cols-3 gap-8 xl:gap-[120px]">
<div>
<p class="font-normal font-['Blinker'] text-xl leading-[30px] mb-6 p-0">@lang('footer.about_us')</p>
<ul class="m-0 p-0">
<ul class="p-0 m-0">
<li class="mb-4">
<a href="/about" class="cookweek-link hover-underline">@lang('footer.about_code_week')</a>
</li>
Expand All @@ -55,7 +55,7 @@
</div>
<div>
<p class="font-normal font-['Blinker'] text-xl leading-[30px] mb-6 p-0">@lang('footer.quick_links')</p>
<ul class="m-0 p-0">
<ul class="p-0 m-0">
<li class="mb-4">
<a href="/register" class="cookweek-link hover-underline">@lang('footer.register')</a>
</li>
Expand All @@ -69,13 +69,13 @@
<a href="/blog" class="cookweek-link hover-underline">@lang('footer.news')</a>
</li>
<li class="mb-4">
<a href="https://mailp.ro/f/OCxYWv" target="_blank" class="cookweek-link hover-underline">@lang('footer.newsletter_signup')</a>
<a href="https://forms.mailpro.com/l3086a9a3-9dc5-4160-ab12-71a0f34d3f07" target="_blank" class="cookweek-link hover-underline">@lang('footer.newsletter_signup')</a>
</li>
</ul>
</div>
<div>
<p class="font-normal font-['Blinker'] text-xl leading-[30px] mb-6 p-0">@lang('footer.educational_resources')</p>
<ul class="m-0 p-0">
<ul class="p-0 m-0">
<li class="mb-4">
<a href="/resources/CodingAtHome" class="cookweek-link hover-underline">@lang('footer.coding_home')</a>
</li>
Expand All @@ -99,8 +99,8 @@
</div>
</div>
</div>
<div class="codeweek-container-lg pt-8 pb-20 md:pb-8 xl:py-4 flex flex-col xl:flex-row gap-8 justify-between">
<ul class="m-0 p-0 flex-shrink-0 flex flex-col items-start xl:items-center xl:flex-row gap-4 xl:gap-10">
<div class="flex flex-col justify-between gap-8 pt-8 pb-20 codeweek-container-lg md:pb-8 xl:py-4 xl:flex-row">
<ul class="flex flex-col items-start flex-shrink-0 gap-4 p-0 m-0 xl:items-center xl:flex-row xl:gap-10">
<li>
<a href="/privacy" class="cookweek-link hover-underline !text-sm">@lang('footer.privacy_policy')</a>
</li>
Expand All @@ -125,7 +125,7 @@
id="scroll-top-btn"
class="fixed z-[100] -bottom-2 hover:bottom-0 right-[20px] bg-yellow hover:bg-primary p-3 pb-4 md:p-4 md:pb-6 rounded-t-full duration-300 cursor-pointer"
>
<img class="icon-rotate-270 w-6 h-6 md:w-8 md:h-8" src="/images/arrow-up-icon.svg" />
<img class="w-6 h-6 icon-rotate-270 md:w-8 md:h-8" src="/images/arrow-up-icon.svg" />
</div>

<div id="footer-scroll-activity" class="fixed md:hidden bottom-0 left-0 border-t-2 border-primary flex justify-center py-4 px-[44px] w-full bg-white z-[99]">
Expand Down
14 changes: 14 additions & 0 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,20 @@
Route::get('/podcast/{slug}', function ($slug) {
return redirect("/podcasts/{$slug}", 301);
});
Route::permanentRedirect('/view/1221651/blog/careers-linda-liukas/', '/blog/careers-linda-liukas/');
Route::permanentRedirect('/challenges/careers-as-constellations/', '/blog/careers-as-constellations/');
Route::permanentRedirect('/view/1221652/blog/careers-linda-liukas/', '/blog/careers-linda-liukas/');
Route::permanentRedirect('/view/1221652/challenges/careers-as-constellations', '/challenges/careers-as-constellations/');
Route::permanentRedirect('/view/1221912/blog/careers-linda-liukas/', '/blog/careers-linda-liukas/');
Route::permanentRedirect('/view/1221912/challenges/careers-as-constellations', '/challenges/careers-as-constellations/');
Route::get('/search/{term}', function ($term) {
if (strtolower($term) === 'e twinning') {
return redirect('/search', 301);
}

// Optionally, handle other terms or return 404
abort(404);
});
//redirects end
//Auth::loginUsingId(268354);

Expand Down
Loading