diff --git a/app/Livewire/App/NavFooter.php b/app/Livewire/App/NavFooter.php
new file mode 100644
index 0000000..b5fd1a7
--- /dev/null
+++ b/app/Livewire/App/NavFooter.php
@@ -0,0 +1,13 @@
+=7.2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php85\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php85/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-05-02T08:40:52+00:00"
+ },
{
"name": "symfony/polyfill-uuid",
"version": "v1.32.0",
diff --git a/resources/css/app.css b/resources/css/app.css
index ceda652..f3c1562 100644
--- a/resources/css/app.css
+++ b/resources/css/app.css
@@ -33,13 +33,35 @@ wa-page[view='desktop'] {
[slot*='navigation'] {
border-inline-end: var(--wa-border-width-s) var(--wa-border-style) var(--wa-color-surface-border);
}
+
+ [slot*='navigation'],
+ [slot*='navigation-header'],
+ [slot*='navigation-footer']{
+ display: none;
+ }
}
wa-page[view='mobile'] {
+ [slot*='header'] {
+ display: none;
+ }
--menu-width: auto;
--aside-width: auto;
}
+[slot*='navigation'] a {
+ text-decoration: none;
+ --wa-color-text-link: var(--wa-color-text-normal);
+}
+
+[slot*='navigation-footer'] {
+ border-block-start: var(--wa-border-width-s) var(--wa-border-style) var(--wa-color-surface-border);
+ a {
+ text-decoration: none;
+ --wa-color-text-link: var(--wa-color-text-normal);
+ }
+}
+
[slot='header'] {
--wa-link-decoration-default: none;
border-block-end: var(--wa-border-width-s) var(--wa-border-style) var(--wa-color-surface-border);
diff --git a/resources/views/components/layouts/app.blade.php b/resources/views/components/layouts/app.blade.php
index 0e547fb..35d90e3 100644
--- a/resources/views/components/layouts/app.blade.php
+++ b/resources/views/components/layouts/app.blade.php
@@ -16,6 +16,14 @@
@livewire('app.navbar')
+
+
+
+