Skip to content

Commit e9dc3cf

Browse files
authored
Update layout components (#139)
* Add layout and update views * Update layout on discussion and user profil * Update layout
1 parent 9dafac9 commit e9dc3cf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2475
-2182
lines changed

app/View/Components/AppLayout.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace App\View\Components;
6+
7+
use Illuminate\Contracts\View\View;
8+
use Illuminate\View\Component;
9+
10+
final class AppLayout extends Component
11+
{
12+
public function render(): View
13+
{
14+
return view('layouts.app');
15+
}
16+
}

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"filament/filament": "^3.0",
1818
"filament/notifications": "^3.0",
1919
"francescomalatesta/laravel-feature": "dev-l10-compatibility",
20+
"gehrisandro/tailwind-merge-laravel": "^1.0",
2021
"graham-campbell/markdown": "^15.0",
2122
"guzzlehttp/guzzle": "^7.7.0",
2223
"jenssegers/agent": "^2.6.4",

composer.lock

Lines changed: 146 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@
1313
"@babel/preset-react": "^7.16.0",
1414
"@defstudio/vite-livewire-plugin": "^1.2.1",
1515
"@tailwindcss/aspect-ratio": "^0.4.2",
16-
"@tailwindcss/forms": "^0.5.4",
17-
"@tailwindcss/typography": "^0.5.9",
16+
"@tailwindcss/forms": "^0.5.7",
17+
"@tailwindcss/typography": "^0.5.10",
1818
"alpinejs": "^3.12.0",
19-
"autoprefixer": "^10.4.14",
19+
"autoprefixer": "^10.4.16",
2020
"babel-plugin-jsx-pragmatic": "^1.0.2",
2121
"eslint-config-preact": "^1.1.3",
2222
"fs": "^0.0.1-security",
2323
"laravel-vite-plugin": "^0.7.8",
2424
"lodash": "^4.17.19",
2525
"os": "^0.1.2",
2626
"path": "^0.12.7",
27-
"postcss": "^8.4.27",
27+
"postcss": "^8.4.32",
2828
"postcss-loader": "^6.2.1",
2929
"postcss-preset-env": "^7.0.1",
30-
"tailwindcss": "^3.3.3",
30+
"tailwindcss": "^3.4.0",
3131
"tippy.js": "^6.3.7",
3232
"vite": "^4.4.7"
3333
},

0 commit comments

Comments
 (0)