15 lines
288 B
PHP
Raw Normal View History

2024-12-10 15:28:14 -08:00
<?php
namespace App\Filament\Guest\Pages;
use Filament\Pages\Page;
class ContactUs extends Page
{
protected static ?string $navigationIcon = 'lucide-contact';
protected static ?int $navigationSort = 2;
protected static string $view = 'filament.guest.pages.contact-us';
}