- Removed `UserDashboardController` and related user dashboard views. - Introduced `ExplorePageController` and redesigned `explore.blade.php` as the main user-facing page. - Updated routing logic to redirect users (non-admin and non-broker) to the `explore` page. - Added dedicated sidebar and layout components for the broker dashboard, improving structure and navigation.
32 lines
707 B
CSS
32 lines
707 B
CSS
@import 'tailwindcss';
|
|
|
|
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
|
@source '../../storage/framework/views/*.php';
|
|
@source '../**/*.blade.php';
|
|
@source '../**/*.js';
|
|
|
|
@theme {
|
|
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
|
'Segoe UI Symbol', 'Noto Color Emoji';
|
|
|
|
--color-primary-700: oklch(0.13 0.03 244);
|
|
--color-primary-600: oklch(0.22 0.03 257);
|
|
--color-accent-600: oklch(0.45 0.01 232);
|
|
}
|
|
|
|
@layer components{
|
|
@import "./button.css";
|
|
|
|
.wrapper {
|
|
@apply px-4 md:px-8
|
|
}
|
|
|
|
|
|
}
|
|
|
|
@layer base{
|
|
h2 {
|
|
@apply text-5xl font-black text-center
|
|
}
|
|
}
|