-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
baef4c2
commit bf9478e
Showing
8 changed files
with
48 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div> | ||
Tags | ||
</div> |
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,3 @@ | ||
<div> | ||
Videos | ||
</div> |
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
<x-wireuse::layout-page> | ||
<x-wireuse::navigation-tabs | ||
:$navigation | ||
class="px-3 gap-5 border-b border-secondary-500/50 w-full" | ||
class:tab="py-3 border-b text-sm font-medium" | ||
class:tabs="flex items-center overflow-x-auto gap-x-5 px-3 border-b border-secondary-500/50" | ||
class:item="py-3 border-b text-sm font-medium" | ||
class:active="border-primary-400 text-primary-400" | ||
class:inactive="border-secondary-400 text-secondary-400" | ||
|
||
/> | ||
</x-wireuse::layout-page> |
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,15 @@ | ||
<?php | ||
|
||
namespace App\Livewire\Dashboard\Content; | ||
|
||
use Livewire\Component; | ||
|
||
class Tags extends Component | ||
{ | ||
public function render() | ||
{ | ||
return view('livewire.dashboard.content.tags')->with([ | ||
// | ||
]); | ||
} | ||
} |
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,15 @@ | ||
<?php | ||
|
||
namespace App\Livewire\Dashboard\Content; | ||
|
||
use Livewire\Component; | ||
|
||
class Videos extends Component | ||
{ | ||
public function render() | ||
{ | ||
return view('livewire.dashboard.content.videos')->with([ | ||
// | ||
]); | ||
} | ||
} |
26 changes: 0 additions & 26 deletions
26
src/App/Livewire/Dashboard/States/DashboardFooterState.php
This file was deleted.
Oops, something went wrong.