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');