diff --git a/resources/views/components/logo.blade.php b/resources/views/components/logo.blade.php new file mode 100644 index 0000000..1addc87 --- /dev/null +++ b/resources/views/components/logo.blade.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/views/onepager.blade.php b/resources/views/homepage.blade.php similarity index 87% rename from resources/views/onepager.blade.php rename to resources/views/homepage.blade.php index 8e3a874..4ac7d6e 100644 --- a/resources/views/onepager.blade.php +++ b/resources/views/homepage.blade.php @@ -5,6 +5,12 @@ PHP Monitor + {{-- Web Fonts --}} + + + + {{-- Vite --}} + @vite('resources/css/app.css') {{-- OG --}} @@ -23,19 +29,13 @@ - {{-- Vite --}} - @vite('resources/css/app.css') - {{-- Web Fonts --}} - - -
- +

Monitor and manage
your PHP installations
with ease.

@@ -65,7 +65,7 @@ PHP Monitor lives in your menu bar. From here, you can use the bulk of PHP Monitor's functionality, including the global version switcher as well as services status section. - Sometimes you need to edit a configuration file or toggle an extension. But where are those pesky config files located again? From the PHP Monitor's menu you can easily find them. Extensions can even be toggled with one click of the button! + Sometimes you need to edit a configuration file or toggle an extension. But where are those pesky config files located again? From PHP Monitor's menu you can easily find them. Extensions can even be toggled with one click of the button! Do you have many projects or legacy sites? No worries, the app includes a domain list that you can use to get a quick overview of all domains and proxies you have set up, as well as their PHP version, what type of project they are, and more. diff --git a/routes/web.php b/routes/web.php index dbb2ea7..153e458 100644 --- a/routes/web.php +++ b/routes/web.php @@ -2,4 +2,4 @@ use Illuminate\Support\Facades\Route; -Route::get('/', fn () => view('onepager')); +Route::get('/', fn () => view('homepage')); \ No newline at end of file