-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from redcraft-org/footer
Footer
- Loading branch information
Showing
6 changed files
with
57 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
@php | ||
$links = [ | ||
[ | ||
'name' => 'Accueil', | ||
'route' => 'home', | ||
], | ||
[ | ||
'name' => 'À propos', | ||
'route' => 'about', | ||
], | ||
[ | ||
'name' => 'Contact', | ||
'route' => 'contact', | ||
], | ||
]; | ||
@endphp | ||
|
||
<x-section class="pb-32" bg="bg-base-200" text="text-light" wave-bg="fill-base-200" wave-id="6"> | ||
<div class="flex md:flex-row flex-col"> | ||
<div class="md:w-1/2 flex items-center mx-auto pb-4 md:pb-0"> | ||
<x-jet-nav-link :href="route('home')" :active="request()->routeIs('home')"> | ||
<img id="rc-logo-homepage" src="{{ asset('images/inline_org_color.png') }}"> | ||
</x-jet-nav-link> | ||
</div> | ||
<div class="md:w-1/2 flex flex-col"> | ||
<p class="pb-4">Une toute nouvelle expérience Minecraft multilingue avec une infrastructure open source de | ||
serveurs | ||
créatif et survie soigneusement conçus.</p> | ||
<div class="flex justify-between"> | ||
@foreach ($links as $link) | ||
<x-jet-nav-link :href="route($link['route'])" :active="request()->routeIs($link['route'])"> | ||
{{ $link['name'] }} | ||
</x-jet-nav-link> | ||
@endforeach | ||
</div> | ||
</div> | ||
</div> | ||
</x-section> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters