From 3af2939e4095cf88ab2691b50bdde1fe5bc0de58 Mon Sep 17 00:00:00 2001 From: Pedro Cabral Date: Tue, 21 Apr 2026 10:13:07 +0200 Subject: [PATCH] added storybook --- resources/views/storybook/index.blade.php | 80 +++++++++++++++++++++++ routes/web.php | 4 ++ 2 files changed, 84 insertions(+) create mode 100644 resources/views/storybook/index.blade.php diff --git a/resources/views/storybook/index.blade.php b/resources/views/storybook/index.blade.php new file mode 100644 index 0000000..59b0a40 --- /dev/null +++ b/resources/views/storybook/index.blade.php @@ -0,0 +1,80 @@ + + + + + Storybook + + @vite(['resources/css/app.css', 'resources/js/app.js']) + + + +

Storybook

+ + +
+

Colors

+ +
+
Primary
+
Secondary
+
Surface
+
+
+ + +
+

Buttons

+

Enabled

+ +
+ + + + + +
+ +

Disabled

+ +
+ + + + + +
+
+ + +
+

Cards

+ +
+

Card title

+

This is a simple card component.

+
+
+ + +
+

Typography

+ +

Default text

+

Muted text

+

Primary text

+
+ + + \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 86a06c5..16e9d0c 100644 --- a/routes/web.php +++ b/routes/web.php @@ -5,3 +5,7 @@ use Illuminate\Support\Facades\Route; Route::get('/', function () { return view('welcome'); }); + +Route::get('/storybook', function () { + return view('storybook.index'); +})->name('storybook');