feat/ui: cinematic landing page and dynamic devtool-friendly bento structures
- Create highly responsive bento layouts (grid, card, pages) - Integrate Livewire with Alpine and complex GSAP animations. - Implement DevTool Dark theme values across Blade components. - Enhance interactive elements, micro-interactions, API snippets logic natively. - Apply semantic HTML and properly linked responsive Nav\/Footers sections structure
This commit is contained in:
15
app/Livewire/LandingPage.php
Normal file
15
app/Livewire/LandingPage.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire;
|
||||
|
||||
use Livewire\Attributes\Layout;
|
||||
use Livewire\Component;
|
||||
|
||||
#[Layout('components.layouts.marketing')]
|
||||
class LandingPage extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.landing-page');
|
||||
}
|
||||
}
|
||||
15
app/Livewire/PrivacyPolicy.php
Normal file
15
app/Livewire/PrivacyPolicy.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire;
|
||||
|
||||
use Livewire\Attributes\Layout;
|
||||
use Livewire\Component;
|
||||
|
||||
#[Layout('components.layouts.marketing')]
|
||||
class PrivacyPolicy extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.privacy-policy');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user