2024-12-18 14:23:43 -08:00

15 lines
288 B
PHP

<?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';
}