-
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 #526 from HZ-HBO-ICT/rework/speaker-page
Rework - Companies and Speakers front facing pages
- Loading branch information
Showing
22 changed files
with
664 additions
and
402 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
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,29 @@ | ||
<?php | ||
|
||
namespace App\View\Components\Company; | ||
|
||
use App\Models\Company; | ||
use Closure; | ||
use Illuminate\Contracts\View\View; | ||
use Illuminate\View\Component; | ||
|
||
class CompanyLogosManager extends Component | ||
{ | ||
public Company $company; | ||
|
||
/** | ||
* Create a new component instance. | ||
*/ | ||
public function __construct(Company $company) | ||
{ | ||
$this->company = $company; | ||
} | ||
|
||
/** | ||
* Get the view / contents that represent the component. | ||
*/ | ||
public function render(): View|Closure|string | ||
{ | ||
return view('components.company.company-logos-manager'); | ||
} | ||
} |
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,13 @@ | ||
<?php | ||
|
||
return [ | ||
'routes' => [ | ||
'welcome', | ||
'speakers.index', | ||
'companies.index', | ||
'companies.show', | ||
'presentations.show', | ||
'faq', | ||
'contact', | ||
], | ||
]; |
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
18 changes: 18 additions & 0 deletions
18
resources/views/components/company/company-logos-manager.blade.php
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,18 @@ | ||
<x-action-section> | ||
<x-slot name="title"> | ||
{{ __('Company logo') }} | ||
</x-slot> | ||
|
||
<x-slot name="description"> | ||
{{ __("Add the logo of your company. Due to the fact that we utilize dark mode as well, | ||
we suggest that you upload a dark theme of your logo as well. We also suggest that you upload a | ||
transparent background image for the logo. If you don't upload one a placeholder will be used") }} | ||
</x-slot> | ||
|
||
<x-slot name="content"> | ||
<div class="grid grid-cols-2 gap-2"> | ||
@livewire('company.manage-logo', ['company' => $company ], key('light')) | ||
@livewire('company.manage-logo', ['company' => $company, 'theme' => 'dark' ], key('dark')) | ||
</div> | ||
</x-slot> | ||
</x-action-section> |
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 |
---|---|---|
|
@@ -3,16 +3,18 @@ | |
{{-- <div--}} | ||
{{-- class="before:absolute before:bg-gradient-to-br before:from-gradient-yellow before:via-gradient-pink before:via-gradient-purple before:to-gradient-blue before:opacity-70 before:w-full before:h-full"></div>--}} | ||
|
||
<h2 class="text-center dark:text-gray-50 text-gray-900 text-5xl font-extrabold py-12"> | ||
Frequently Asked Questions | ||
</h2> | ||
<div class="isolate px-6 py-6 max-w-7xl mx-auto my-5 border border-gray-100 rounded bg-white dark:bg-gray-800 dark:border-gray-700"> | ||
<div class="text-center max-w-2xl mx-auto"> | ||
<h2 class="tracking-tight leading-10 font-bold text-2xl dark:text-white">Frequently Asked Questions</h2> | ||
<p class="leading-7 text-base dark:text-gray-200"> | ||
Have a different question and can’t find the answer you’re looking for? Reach out to our support team by emailing | ||
<a class="text-blue-600 hover:text-blue-400 visited:text-purple-600" href="mailto: [email protected]">[email protected]</a> | ||
and we’ll get back to you as soon as we can. | ||
</p> | ||
</div> | ||
<div class="m-5 md:m-20"> | ||
<div class="m-5 md:mt-10 md:mb-20"> | ||
<dl class="grid-cols-1 gap-y-5 md:gap-x-10 md:gap-y-16 md:grid-cols-2 grid"> | ||
<div class="border rounded border-gray-300 shadow p-4 dark:bg-gray-800 dark:border-gray-700"> | ||
<dt class="leading-7 font-semibold text-base dark:text-white">What is the “We are in IT together Conference”?</dt> | ||
|
Oops, something went wrong.