20 lines
510 B
PHP
20 lines
510 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Storybook</title>
|
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
</head>
|
|
<body class="bg-background text-text p-10 space-y-12">
|
|
|
|
<h1 class="text-3xl font-bold">Storybook</h1>
|
|
|
|
@include('storybook.sections.colours')
|
|
@include('storybook.sections.buttons')
|
|
@include('storybook.sections.cards')
|
|
@include('storybook.sections.typography')
|
|
|
|
</body>
|
|
</html>
|