@deepgram/styles 0.2.8 → 0.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2124,7 +2124,7 @@ components:
2124
2124
  description: "Loading spinner animation"
2125
2125
  category: "application-ui"
2126
2126
  section: "Feedback"
2127
- subsection: "Alerts"
2127
+ subsection: "Loading"
2128
2128
  tags: [spinner, loading, progress]
2129
2129
  css:
2130
2130
  ".dg-spinner":
@@ -2144,7 +2144,7 @@ components:
2144
2144
  description: "Modal overlay with content"
2145
2145
  category: "application-ui"
2146
2146
  section: "Feedback"
2147
- subsection: "Alerts"
2147
+ subsection: "Modals"
2148
2148
  tags: [modal, overlay, dialog]
2149
2149
  css:
2150
2150
  ".dg-modal-overlay":
@@ -2722,3 +2722,2093 @@ components:
2722
2722
  class: "dg-btn dg-btn--primary"
2723
2723
  children:
2724
2724
  - "Subscribe"
2725
+
2726
+ # ---------------------------------------------------------------------------
2727
+ # ALERTS
2728
+ # ---------------------------------------------------------------------------
2729
+ alert:
2730
+ metadata:
2731
+ title: "Alerts"
2732
+ description: "Feedback banners for warnings, errors, success, and informational messages"
2733
+ category: "application-ui"
2734
+ section: "Feedback"
2735
+ subsection: "Alerts"
2736
+ tags: [alert, feedback, notification, banner, warning, error, success, info]
2737
+ css:
2738
+ ".dg-alert":
2739
+ apply: "rounded-md p-4"
2740
+ variants:
2741
+ warning:
2742
+ css:
2743
+ ".dg-alert--warning":
2744
+ properties:
2745
+ background-color: "color-mix(in srgb, var(--color-dg-warning) 10%, transparent)"
2746
+ outline: "1px solid color-mix(in srgb, var(--color-dg-warning) 15%, transparent)"
2747
+ success:
2748
+ css:
2749
+ ".dg-alert--success":
2750
+ properties:
2751
+ background-color: "color-mix(in srgb, var(--color-dg-success) 10%, transparent)"
2752
+ outline: "1px solid color-mix(in srgb, var(--color-dg-success) 15%, transparent)"
2753
+ danger:
2754
+ css:
2755
+ ".dg-alert--danger":
2756
+ properties:
2757
+ background-color: "color-mix(in srgb, var(--color-dg-danger) 10%, transparent)"
2758
+ outline: "1px solid color-mix(in srgb, var(--color-dg-danger) 15%, transparent)"
2759
+ info:
2760
+ css:
2761
+ ".dg-alert--info":
2762
+ properties:
2763
+ background-color: "color-mix(in srgb, var(--color-dg-secondary) 10%, transparent)"
2764
+ outline: "1px solid color-mix(in srgb, var(--color-dg-secondary) 15%, transparent)"
2765
+ elements:
2766
+ content:
2767
+ css:
2768
+ ".dg-alert__content":
2769
+ apply: "flex"
2770
+ icon:
2771
+ css:
2772
+ ".dg-alert__icon":
2773
+ apply: "shrink-0"
2774
+ ".dg-alert__icon svg":
2775
+ apply: "size-5"
2776
+ ".dg-alert--warning .dg-alert__icon":
2777
+ apply: "text-dg-warning"
2778
+ ".dg-alert--success .dg-alert__icon":
2779
+ apply: "text-dg-success"
2780
+ ".dg-alert--danger .dg-alert__icon":
2781
+ apply: "text-dg-danger"
2782
+ ".dg-alert--info .dg-alert__icon":
2783
+ apply: "text-dg-secondary"
2784
+ body:
2785
+ css:
2786
+ ".dg-alert__body":
2787
+ properties:
2788
+ margin-left: "0.75rem"
2789
+ title:
2790
+ css:
2791
+ ".dg-alert__title":
2792
+ apply: "text-sm font-medium"
2793
+ ".dg-alert--warning .dg-alert__title":
2794
+ apply: "text-dg-warning"
2795
+ ".dg-alert--success .dg-alert__title":
2796
+ apply: "text-dg-success"
2797
+ ".dg-alert--danger .dg-alert__title":
2798
+ apply: "text-dg-danger"
2799
+ ".dg-alert--info .dg-alert__title":
2800
+ apply: "text-dg-secondary"
2801
+ description:
2802
+ css:
2803
+ ".dg-alert__description":
2804
+ apply: "mt-2 text-sm text-dg-muted"
2805
+ actions:
2806
+ css:
2807
+ ".dg-alert__actions":
2808
+ apply: "mt-4"
2809
+ ".dg-alert__actions .dg-btn":
2810
+ apply: "text-sm"
2811
+ list:
2812
+ css:
2813
+ ".dg-alert__list":
2814
+ apply: "mt-2 text-sm text-dg-muted list-disc pl-5"
2815
+ ".dg-alert__list li":
2816
+ properties:
2817
+ padding-left: "0.25rem"
2818
+ dismiss:
2819
+ css:
2820
+ ".dg-alert__dismiss":
2821
+ apply: "ml-auto pl-3 shrink-0"
2822
+ ".dg-alert__dismiss button":
2823
+ apply: "inline-flex rounded-md p-1.5 text-dg-muted cursor-pointer"
2824
+ ".dg-alert__dismiss button:hover":
2825
+ apply: "text-dg-text"
2826
+ ".dg-alert__dismiss button svg":
2827
+ apply: "size-5"
2828
+ examples:
2829
+ - title: "Warning Alert with Description"
2830
+ description: "A warning alert with title and description text"
2831
+ ast:
2832
+ tag: div
2833
+ props:
2834
+ class: "dg-alert dg-alert--warning"
2835
+ children:
2836
+ - tag: div
2837
+ props:
2838
+ class: "dg-alert__content"
2839
+ children:
2840
+ - tag: div
2841
+ props:
2842
+ class: "dg-alert__icon"
2843
+ children:
2844
+ - tag: svg
2845
+ props:
2846
+ viewBox: "0 0 20 20"
2847
+ fill: "currentColor"
2848
+ aria-hidden: "true"
2849
+ children:
2850
+ - tag: path
2851
+ props:
2852
+ fill-rule: "evenodd"
2853
+ clip-rule: "evenodd"
2854
+ d: "M8.485 2.495c.673-1.167 2.357-1.167 3.03 0l6.28 10.875c.673 1.167-.17 2.625-1.516 2.625H3.72c-1.347 0-2.189-1.458-1.515-2.625L8.485 2.495ZM10 5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 10 5Zm0 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
2855
+ - tag: div
2856
+ props:
2857
+ class: "dg-alert__body"
2858
+ children:
2859
+ - tag: h3
2860
+ props:
2861
+ class: "dg-alert__title"
2862
+ children:
2863
+ - "Attention needed"
2864
+ - tag: div
2865
+ props:
2866
+ class: "dg-alert__description"
2867
+ children:
2868
+ - tag: p
2869
+ children:
2870
+ - "Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid pariatur, ipsum similique veniam quo totam eius aperiam dolorum."
2871
+ - title: "Success Alert"
2872
+ description: "A success alert for confirming completed actions"
2873
+ ast:
2874
+ tag: div
2875
+ props:
2876
+ class: "dg-alert dg-alert--success"
2877
+ children:
2878
+ - tag: div
2879
+ props:
2880
+ class: "dg-alert__content"
2881
+ children:
2882
+ - tag: div
2883
+ props:
2884
+ class: "dg-alert__icon"
2885
+ children:
2886
+ - tag: svg
2887
+ props:
2888
+ viewBox: "0 0 20 20"
2889
+ fill: "currentColor"
2890
+ aria-hidden: "true"
2891
+ children:
2892
+ - tag: path
2893
+ props:
2894
+ fill-rule: "evenodd"
2895
+ clip-rule: "evenodd"
2896
+ d: "M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm3.857-9.809a.75.75 0 0 0-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 1 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089l4-5.5Z"
2897
+ - tag: div
2898
+ props:
2899
+ class: "dg-alert__body"
2900
+ children:
2901
+ - tag: h3
2902
+ props:
2903
+ class: "dg-alert__title"
2904
+ children:
2905
+ - "Successfully uploaded"
2906
+ - tag: div
2907
+ props:
2908
+ class: "dg-alert__description"
2909
+ children:
2910
+ - tag: p
2911
+ children:
2912
+ - "Your file has been uploaded and is now being processed."
2913
+ - title: "Danger Alert with List"
2914
+ description: "An error alert with a list of issues to resolve"
2915
+ ast:
2916
+ tag: div
2917
+ props:
2918
+ class: "dg-alert dg-alert--danger"
2919
+ children:
2920
+ - tag: div
2921
+ props:
2922
+ class: "dg-alert__content"
2923
+ children:
2924
+ - tag: div
2925
+ props:
2926
+ class: "dg-alert__icon"
2927
+ children:
2928
+ - tag: svg
2929
+ props:
2930
+ viewBox: "0 0 20 20"
2931
+ fill: "currentColor"
2932
+ aria-hidden: "true"
2933
+ children:
2934
+ - tag: path
2935
+ props:
2936
+ fill-rule: "evenodd"
2937
+ clip-rule: "evenodd"
2938
+ d: "M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM8.28 7.22a.75.75 0 0 0-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 1 0 1.06 1.06L10 11.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L11.06 10l1.72-1.72a.75.75 0 0 0-1.06-1.06L10 8.94 8.28 7.22Z"
2939
+ - tag: div
2940
+ props:
2941
+ class: "dg-alert__body"
2942
+ children:
2943
+ - tag: h3
2944
+ props:
2945
+ class: "dg-alert__title"
2946
+ children:
2947
+ - "There were errors with your submission"
2948
+ - tag: ul
2949
+ props:
2950
+ class: "dg-alert__list"
2951
+ children:
2952
+ - tag: li
2953
+ children:
2954
+ - "Your API key is invalid"
2955
+ - tag: li
2956
+ children:
2957
+ - "The project name is already taken"
2958
+ - title: "Info Alert"
2959
+ description: "An informational alert for general notices"
2960
+ ast:
2961
+ tag: div
2962
+ props:
2963
+ class: "dg-alert dg-alert--info"
2964
+ children:
2965
+ - tag: div
2966
+ props:
2967
+ class: "dg-alert__content"
2968
+ children:
2969
+ - tag: div
2970
+ props:
2971
+ class: "dg-alert__icon"
2972
+ children:
2973
+ - tag: svg
2974
+ props:
2975
+ viewBox: "0 0 20 20"
2976
+ fill: "currentColor"
2977
+ aria-hidden: "true"
2978
+ children:
2979
+ - tag: path
2980
+ props:
2981
+ fill-rule: "evenodd"
2982
+ clip-rule: "evenodd"
2983
+ d: "M18 10a8 8 0 1 1-16 0 8 8 0 0 1 16 0Zm-7-4a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 9a.75.75 0 0 0 0 1.5h.253a.25.25 0 0 1 .244.304l-.459 2.066A1.75 1.75 0 0 0 10.747 15H11a.75.75 0 0 0 0-1.5h-.253a.25.25 0 0 1-.244-.304l.459-2.066A1.75 1.75 0 0 0 9.253 9H9Z"
2984
+ - tag: div
2985
+ props:
2986
+ class: "dg-alert__body"
2987
+ children:
2988
+ - tag: h3
2989
+ props:
2990
+ class: "dg-alert__title"
2991
+ children:
2992
+ - "New API version available"
2993
+ - tag: div
2994
+ props:
2995
+ class: "dg-alert__description"
2996
+ children:
2997
+ - tag: p
2998
+ children:
2999
+ - "A new version of the API is available. Please update your integration to take advantage of new features."
3000
+ - title: "Warning Alert with Actions"
3001
+ description: "A warning alert with action buttons"
3002
+ ast:
3003
+ tag: div
3004
+ props:
3005
+ class: "dg-alert dg-alert--warning"
3006
+ children:
3007
+ - tag: div
3008
+ props:
3009
+ class: "dg-alert__content"
3010
+ children:
3011
+ - tag: div
3012
+ props:
3013
+ class: "dg-alert__icon"
3014
+ children:
3015
+ - tag: svg
3016
+ props:
3017
+ viewBox: "0 0 20 20"
3018
+ fill: "currentColor"
3019
+ aria-hidden: "true"
3020
+ children:
3021
+ - tag: path
3022
+ props:
3023
+ fill-rule: "evenodd"
3024
+ clip-rule: "evenodd"
3025
+ d: "M8.485 2.495c.673-1.167 2.357-1.167 3.03 0l6.28 10.875c.673 1.167-.17 2.625-1.516 2.625H3.72c-1.347 0-2.189-1.458-1.515-2.625L8.485 2.495ZM10 5a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 10 5Zm0 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
3026
+ - tag: div
3027
+ props:
3028
+ class: "dg-alert__body"
3029
+ children:
3030
+ - tag: h3
3031
+ props:
3032
+ class: "dg-alert__title"
3033
+ children:
3034
+ - "Attention needed"
3035
+ - tag: div
3036
+ props:
3037
+ class: "dg-alert__description"
3038
+ children:
3039
+ - tag: p
3040
+ children:
3041
+ - "Your account is approaching its usage limit. Upgrade your plan to avoid service interruptions."
3042
+ - tag: div
3043
+ props:
3044
+ class: "dg-alert__actions"
3045
+ children:
3046
+ - tag: button
3047
+ props:
3048
+ type: "button"
3049
+ class: "dg-btn dg-btn--ghost dg-btn--sm"
3050
+ children:
3051
+ - "View usage"
3052
+ - tag: button
3053
+ props:
3054
+ type: "button"
3055
+ class: "dg-btn dg-btn--primary dg-btn--sm"
3056
+ children:
3057
+ - "Upgrade plan"
3058
+ - title: "Dismissible Alert"
3059
+ description: "An alert with a dismiss button"
3060
+ ast:
3061
+ tag: div
3062
+ props:
3063
+ class: "dg-alert dg-alert--success"
3064
+ children:
3065
+ - tag: div
3066
+ props:
3067
+ class: "dg-alert__content"
3068
+ children:
3069
+ - tag: div
3070
+ props:
3071
+ class: "dg-alert__icon"
3072
+ children:
3073
+ - tag: svg
3074
+ props:
3075
+ viewBox: "0 0 20 20"
3076
+ fill: "currentColor"
3077
+ aria-hidden: "true"
3078
+ children:
3079
+ - tag: path
3080
+ props:
3081
+ fill-rule: "evenodd"
3082
+ clip-rule: "evenodd"
3083
+ d: "M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm3.857-9.809a.75.75 0 0 0-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 1 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089l4-5.5Z"
3084
+ - tag: div
3085
+ props:
3086
+ class: "dg-alert__body"
3087
+ children:
3088
+ - tag: h3
3089
+ props:
3090
+ class: "dg-alert__title"
3091
+ children:
3092
+ - "Operation completed"
3093
+ - tag: div
3094
+ props:
3095
+ class: "dg-alert__dismiss"
3096
+ children:
3097
+ - tag: button
3098
+ props:
3099
+ type: "button"
3100
+ aria-label: "Dismiss"
3101
+ children:
3102
+ - tag: svg
3103
+ props:
3104
+ viewBox: "0 0 20 20"
3105
+ fill: "currentColor"
3106
+ aria-hidden: "true"
3107
+ children:
3108
+ - tag: path
3109
+ props:
3110
+ d: "M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22Z"
3111
+
3112
+ combobox:
3113
+ metadata:
3114
+ title: "Comboboxes"
3115
+ description: "Autocomplete combobox inputs with filterable dropdown options"
3116
+ category: "application-ui"
3117
+ section: "Forms"
3118
+ subsection: "Comboboxes"
3119
+ tags: [combobox, autocomplete, select, search, dropdown, form]
3120
+ css:
3121
+ ".dg-combobox":
3122
+ apply: "relative block"
3123
+ ".dg-combobox__label":
3124
+ apply: "block text-sm font-medium text-white"
3125
+ properties:
3126
+ line-height: "1.5rem"
3127
+ ".dg-combobox__wrapper":
3128
+ apply: "relative mt-2 block"
3129
+ ".dg-combobox__input":
3130
+ apply: "block w-full rounded-md bg-white/5 py-1.5 pr-12 pl-3 text-base text-white outline-1 -outline-offset-1 outline-white/10 placeholder:text-dg-slate sm:text-sm"
3131
+ properties:
3132
+ line-height: "1.5rem"
3133
+ ".dg-combobox__input:focus":
3134
+ apply: "outline-2 -outline-offset-2 outline-dg-primary"
3135
+ ".dg-combobox__toggle":
3136
+ apply: "absolute inset-y-0 right-0 flex items-center rounded-r-md px-2"
3137
+ ".dg-combobox__toggle-icon":
3138
+ apply: "size-5 text-dg-muted"
3139
+ ".dg-combobox__options":
3140
+ apply: "max-h-60 overflow-auto rounded-md bg-dg-charcoal py-1 text-base shadow-lg sm:text-sm"
3141
+ properties:
3142
+ outline: "1px solid rgba(255, 255, 255, 0.1)"
3143
+ outline-offset: "-1px"
3144
+ ".dg-combobox__option":
3145
+ apply: "block truncate px-3 py-2 text-dg-platinum select-none cursor-pointer"
3146
+ ".dg-combobox__option:hover":
3147
+ apply: "bg-dg-primary text-white"
3148
+ ".dg-combobox__option.selected":
3149
+ apply: "bg-dg-primary text-white"
3150
+ ".dg-combobox__option-text":
3151
+ apply: "block truncate"
3152
+ ".dg-combobox__check":
3153
+ apply: "absolute inset-y-0 right-0 flex items-center pr-4 text-white"
3154
+ ".dg-combobox__check-icon":
3155
+ apply: "size-5"
3156
+ variants:
3157
+ with-check:
3158
+ css:
3159
+ ".dg-combobox--with-check .dg-combobox__option":
3160
+ apply: "relative pr-9"
3161
+ ".dg-combobox--with-check .dg-combobox__option.selected .dg-combobox__check":
3162
+ apply: "flex"
3163
+ with-avatar:
3164
+ css:
3165
+ ".dg-combobox--with-avatar .dg-combobox__option":
3166
+ apply: "flex items-center"
3167
+ properties:
3168
+ gap: "0.5rem"
3169
+ ".dg-combobox__avatar":
3170
+ apply: "size-6 shrink-0 rounded-full"
3171
+ with-status:
3172
+ css:
3173
+ ".dg-combobox--with-status .dg-combobox__option":
3174
+ apply: "flex items-center"
3175
+ properties:
3176
+ gap: "0.5rem"
3177
+ ".dg-combobox__status":
3178
+ apply: "inline-block size-2 shrink-0 rounded-full"
3179
+ ".dg-combobox__status--online":
3180
+ apply: "bg-dg-success"
3181
+ ".dg-combobox__status--offline":
3182
+ apply: "bg-dg-muted"
3183
+ examples:
3184
+ - title: "Simple Combobox"
3185
+ description: "Basic autocomplete combobox with text options"
3186
+ ast:
3187
+ tag: div
3188
+ props:
3189
+ class: "dg-combobox"
3190
+ children:
3191
+ - tag: label
3192
+ props:
3193
+ class: "dg-combobox__label"
3194
+ for: "combobox-simple"
3195
+ children:
3196
+ - "Assigned to"
3197
+ - tag: div
3198
+ props:
3199
+ class: "dg-combobox__wrapper"
3200
+ children:
3201
+ - tag: input
3202
+ props:
3203
+ id: "combobox-simple"
3204
+ type: text
3205
+ class: "dg-combobox__input"
3206
+ - tag: button
3207
+ props:
3208
+ type: button
3209
+ class: "dg-combobox__toggle"
3210
+ children:
3211
+ - tag: svg
3212
+ props:
3213
+ class: "dg-combobox__toggle-icon"
3214
+ viewBox: "0 0 20 20"
3215
+ fill: "currentColor"
3216
+ aria-hidden: "true"
3217
+ children:
3218
+ - tag: path
3219
+ props:
3220
+ fill-rule: "evenodd"
3221
+ clip-rule: "evenodd"
3222
+ d: "M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z"
3223
+ - tag: ul
3224
+ props:
3225
+ class: "dg-combobox__options"
3226
+ role: "listbox"
3227
+ children:
3228
+ - tag: li
3229
+ props:
3230
+ class: "dg-combobox__option"
3231
+ role: "option"
3232
+ children:
3233
+ - "Leslie Alexander"
3234
+ - tag: li
3235
+ props:
3236
+ class: "dg-combobox__option"
3237
+ role: "option"
3238
+ children:
3239
+ - "Michael Foster"
3240
+ - tag: li
3241
+ props:
3242
+ class: "dg-combobox__option selected"
3243
+ role: "option"
3244
+ children:
3245
+ - "Dries Vincent"
3246
+ - title: "Combobox with Check Indicator"
3247
+ description: "Combobox showing a checkmark on the selected option"
3248
+ ast:
3249
+ tag: div
3250
+ props:
3251
+ class: "dg-combobox dg-combobox--with-check"
3252
+ children:
3253
+ - tag: label
3254
+ props:
3255
+ class: "dg-combobox__label"
3256
+ for: "combobox-check"
3257
+ children:
3258
+ - "Assigned to"
3259
+ - tag: div
3260
+ props:
3261
+ class: "dg-combobox__wrapper"
3262
+ children:
3263
+ - tag: input
3264
+ props:
3265
+ id: "combobox-check"
3266
+ type: text
3267
+ class: "dg-combobox__input"
3268
+ - tag: button
3269
+ props:
3270
+ type: button
3271
+ class: "dg-combobox__toggle"
3272
+ children:
3273
+ - tag: svg
3274
+ props:
3275
+ class: "dg-combobox__toggle-icon"
3276
+ viewBox: "0 0 20 20"
3277
+ fill: "currentColor"
3278
+ aria-hidden: "true"
3279
+ children:
3280
+ - tag: path
3281
+ props:
3282
+ fill-rule: "evenodd"
3283
+ clip-rule: "evenodd"
3284
+ d: "M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z"
3285
+ - tag: ul
3286
+ props:
3287
+ class: "dg-combobox__options"
3288
+ role: "listbox"
3289
+ children:
3290
+ - tag: li
3291
+ props:
3292
+ class: "dg-combobox__option"
3293
+ role: "option"
3294
+ children:
3295
+ - tag: span
3296
+ props:
3297
+ class: "dg-combobox__option-text"
3298
+ children:
3299
+ - "Leslie Alexander"
3300
+ - tag: li
3301
+ props:
3302
+ class: "dg-combobox__option selected"
3303
+ role: "option"
3304
+ children:
3305
+ - tag: span
3306
+ props:
3307
+ class: "dg-combobox__option-text"
3308
+ children:
3309
+ - "Tom Cook"
3310
+ - tag: span
3311
+ props:
3312
+ class: "dg-combobox__check"
3313
+ children:
3314
+ - tag: svg
3315
+ props:
3316
+ class: "dg-combobox__check-icon"
3317
+ viewBox: "0 0 20 20"
3318
+ fill: "currentColor"
3319
+ aria-hidden: "true"
3320
+ children:
3321
+ - tag: path
3322
+ props:
3323
+ fill-rule: "evenodd"
3324
+ clip-rule: "evenodd"
3325
+ d: "M16.704 4.153a.75.75 0 0 1 .143 1.052l-8 10.5a.75.75 0 0 1-1.127.075l-4.5-4.5a.75.75 0 0 1 1.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 0 1 1.05-.143Z"
3326
+ - tag: li
3327
+ props:
3328
+ class: "dg-combobox__option"
3329
+ role: "option"
3330
+ children:
3331
+ - tag: span
3332
+ props:
3333
+ class: "dg-combobox__option-text"
3334
+ children:
3335
+ - "Whitney Francis"
3336
+ - title: "Combobox with Avatars"
3337
+ description: "Combobox with user avatars next to each option"
3338
+ ast:
3339
+ tag: div
3340
+ props:
3341
+ class: "dg-combobox dg-combobox--with-avatar"
3342
+ children:
3343
+ - tag: label
3344
+ props:
3345
+ class: "dg-combobox__label"
3346
+ for: "combobox-avatar"
3347
+ children:
3348
+ - "Assigned to"
3349
+ - tag: div
3350
+ props:
3351
+ class: "dg-combobox__wrapper"
3352
+ children:
3353
+ - tag: input
3354
+ props:
3355
+ id: "combobox-avatar"
3356
+ type: text
3357
+ class: "dg-combobox__input"
3358
+ - tag: button
3359
+ props:
3360
+ type: button
3361
+ class: "dg-combobox__toggle"
3362
+ children:
3363
+ - tag: svg
3364
+ props:
3365
+ class: "dg-combobox__toggle-icon"
3366
+ viewBox: "0 0 20 20"
3367
+ fill: "currentColor"
3368
+ aria-hidden: "true"
3369
+ children:
3370
+ - tag: path
3371
+ props:
3372
+ fill-rule: "evenodd"
3373
+ clip-rule: "evenodd"
3374
+ d: "M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z"
3375
+ - tag: ul
3376
+ props:
3377
+ class: "dg-combobox__options"
3378
+ role: "listbox"
3379
+ children:
3380
+ - tag: li
3381
+ props:
3382
+ class: "dg-combobox__option"
3383
+ role: "option"
3384
+ children:
3385
+ - tag: img
3386
+ props:
3387
+ class: "dg-combobox__avatar"
3388
+ src: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
3389
+ alt: ""
3390
+ - tag: span
3391
+ props:
3392
+ class: "dg-combobox__option-text"
3393
+ children:
3394
+ - "Leslie Alexander"
3395
+ - tag: li
3396
+ props:
3397
+ class: "dg-combobox__option selected"
3398
+ role: "option"
3399
+ children:
3400
+ - tag: img
3401
+ props:
3402
+ class: "dg-combobox__avatar"
3403
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
3404
+ alt: ""
3405
+ - tag: span
3406
+ props:
3407
+ class: "dg-combobox__option-text"
3408
+ children:
3409
+ - "Tom Cook"
3410
+ - tag: li
3411
+ props:
3412
+ class: "dg-combobox__option"
3413
+ role: "option"
3414
+ children:
3415
+ - tag: img
3416
+ props:
3417
+ class: "dg-combobox__avatar"
3418
+ src: "https://images.unsplash.com/photo-1517365830460-955ce3ccd263?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
3419
+ alt: ""
3420
+ - tag: span
3421
+ props:
3422
+ class: "dg-combobox__option-text"
3423
+ children:
3424
+ - "Whitney Francis"
3425
+ - title: "Combobox with Status Indicators"
3426
+ description: "Combobox with online/offline status indicators"
3427
+ ast:
3428
+ tag: div
3429
+ props:
3430
+ class: "dg-combobox dg-combobox--with-status"
3431
+ children:
3432
+ - tag: label
3433
+ props:
3434
+ class: "dg-combobox__label"
3435
+ for: "combobox-status"
3436
+ children:
3437
+ - "Assigned to"
3438
+ - tag: div
3439
+ props:
3440
+ class: "dg-combobox__wrapper"
3441
+ children:
3442
+ - tag: input
3443
+ props:
3444
+ id: "combobox-status"
3445
+ type: text
3446
+ class: "dg-combobox__input"
3447
+ - tag: button
3448
+ props:
3449
+ type: button
3450
+ class: "dg-combobox__toggle"
3451
+ children:
3452
+ - tag: svg
3453
+ props:
3454
+ class: "dg-combobox__toggle-icon"
3455
+ viewBox: "0 0 20 20"
3456
+ fill: "currentColor"
3457
+ aria-hidden: "true"
3458
+ children:
3459
+ - tag: path
3460
+ props:
3461
+ fill-rule: "evenodd"
3462
+ clip-rule: "evenodd"
3463
+ d: "M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z"
3464
+ - tag: ul
3465
+ props:
3466
+ class: "dg-combobox__options"
3467
+ role: "listbox"
3468
+ children:
3469
+ - tag: li
3470
+ props:
3471
+ class: "dg-combobox__option"
3472
+ role: "option"
3473
+ children:
3474
+ - tag: span
3475
+ props:
3476
+ class: "dg-combobox__status dg-combobox__status--online"
3477
+ - tag: span
3478
+ props:
3479
+ class: "dg-combobox__option-text"
3480
+ children:
3481
+ - "Leslie Alexander"
3482
+ - tag: li
3483
+ props:
3484
+ class: "dg-combobox__option"
3485
+ role: "option"
3486
+ children:
3487
+ - tag: span
3488
+ props:
3489
+ class: "dg-combobox__status dg-combobox__status--offline"
3490
+ - tag: span
3491
+ props:
3492
+ class: "dg-combobox__option-text"
3493
+ children:
3494
+ - "Michael Foster"
3495
+ - tag: li
3496
+ props:
3497
+ class: "dg-combobox__option selected"
3498
+ role: "option"
3499
+ children:
3500
+ - tag: span
3501
+ props:
3502
+ class: "dg-combobox__status dg-combobox__status--online"
3503
+ - tag: span
3504
+ props:
3505
+ class: "dg-combobox__option-text"
3506
+ children:
3507
+ - "Dries Vincent"
3508
+
3509
+ stacked:
3510
+ metadata:
3511
+ title: "Stacked"
3512
+ description: "Stacked application shell with top navigation bar, user profile dropdown, and mobile menu"
3513
+ category: "application-ui"
3514
+ section: "Application Shells"
3515
+ subsection: "Stacked Layouts"
3516
+ tags: [shell, stacked, navbar, navigation, layout]
3517
+ css:
3518
+ ".dg-stacked":
3519
+ apply: "min-h-full"
3520
+ ".dg-stacked__nav":
3521
+ apply: "border-b border-dg-border"
3522
+ properties:
3523
+ background-color: "var(--dg-bg-default, #0b0b0c)"
3524
+ ".dg-stacked__nav-container":
3525
+ apply: "mx-auto max-w-7xl px-4 sm:px-6 lg:px-8"
3526
+ ".dg-stacked__nav-bar":
3527
+ apply: "flex h-16 justify-between"
3528
+ ".dg-stacked__nav-left":
3529
+ apply: "flex"
3530
+ ".dg-stacked__logo":
3531
+ apply: "flex shrink-0 items-center"
3532
+ ".dg-stacked__logo img":
3533
+ apply: "h-8 w-auto"
3534
+ ".dg-stacked__nav-links":
3535
+ apply: "hidden sm:-my-px sm:ml-6 sm:flex sm:space-x-8"
3536
+ ".dg-stacked__nav-link":
3537
+ apply: "inline-flex items-center border-b-2 border-transparent px-1 pt-1 text-sm font-medium text-dg-muted hover:border-dg-platinum hover:text-dg-fog"
3538
+ ".dg-stacked__nav-link--active":
3539
+ apply: "border-dg-primary text-white"
3540
+ ".dg-stacked__nav-right":
3541
+ apply: "hidden sm:ml-6 sm:flex sm:items-center"
3542
+ ".dg-stacked__notification-btn":
3543
+ apply: "relative rounded-full p-1 text-dg-muted hover:text-white focus:outline-2 focus:outline-offset-2 focus:outline-dg-primary"
3544
+ ".dg-stacked__notification-btn svg":
3545
+ apply: "size-6"
3546
+ ".dg-stacked__profile":
3547
+ apply: "relative ml-3"
3548
+ ".dg-stacked__profile-btn":
3549
+ apply: "relative flex max-w-xs items-center rounded-full focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-dg-primary"
3550
+ ".dg-stacked__profile-btn img":
3551
+ apply: "size-8 rounded-full outline -outline-offset-1 outline-white/10"
3552
+ ".dg-stacked__profile-menu":
3553
+ apply: "w-48 origin-top-right rounded-md py-1 shadow-lg outline outline-white/10"
3554
+ properties:
3555
+ background-color: "var(--dg-bg-default, #0b0b0c)"
3556
+ ".dg-stacked__profile-menu a":
3557
+ apply: "block px-4 py-2 text-sm text-dg-platinum focus:bg-white/5 focus:outline-hidden"
3558
+ ".dg-stacked__mobile-toggle":
3559
+ apply: "-mr-2 flex items-center sm:hidden"
3560
+ ".dg-stacked__mobile-btn":
3561
+ apply: "relative inline-flex items-center justify-center rounded-md p-2 text-dg-muted hover:bg-white/5 hover:text-white focus:outline-2 focus:outline-offset-2 focus:outline-dg-primary"
3562
+ properties:
3563
+ background-color: "var(--dg-bg-default, #0b0b0c)"
3564
+ ".dg-stacked__mobile-btn svg":
3565
+ apply: "size-6"
3566
+ ".dg-stacked__mobile-menu":
3567
+ apply: "sm:hidden"
3568
+ ".dg-stacked__mobile-links":
3569
+ apply: "space-y-1 pt-2 pb-3"
3570
+ ".dg-stacked__mobile-link":
3571
+ apply: "block border-l-4 border-transparent py-2 pr-4 pl-3 text-base font-medium text-dg-muted hover:border-dg-slate hover:bg-white/5 hover:text-dg-fog"
3572
+ ".dg-stacked__mobile-link--active":
3573
+ apply: "border-dg-primary bg-dg-primary/10 text-dg-primary"
3574
+ ".dg-stacked__mobile-user":
3575
+ apply: "border-t border-dg-border pt-4 pb-3"
3576
+ ".dg-stacked__mobile-user-info":
3577
+ apply: "flex items-center px-4"
3578
+ ".dg-stacked__mobile-user-avatar":
3579
+ apply: "shrink-0"
3580
+ ".dg-stacked__mobile-user-avatar img":
3581
+ apply: "size-10 rounded-full outline -outline-offset-1 outline-white/10"
3582
+ ".dg-stacked__mobile-user-details":
3583
+ apply: "ml-3"
3584
+ ".dg-stacked__mobile-user-name":
3585
+ apply: "text-base font-medium text-white"
3586
+ ".dg-stacked__mobile-user-email":
3587
+ apply: "text-sm font-medium text-dg-muted"
3588
+ ".dg-stacked__mobile-user-actions":
3589
+ apply: "mt-3 space-y-1"
3590
+ ".dg-stacked__mobile-user-actions a":
3591
+ apply: "block px-4 py-2 text-base font-medium text-dg-muted hover:bg-white/5 hover:text-dg-fog"
3592
+ ".dg-stacked__content":
3593
+ apply: "py-10"
3594
+ ".dg-stacked__page-header":
3595
+ apply: "mx-auto max-w-7xl px-4 sm:px-6 lg:px-8"
3596
+ ".dg-stacked__page-title":
3597
+ apply: "text-3xl font-bold tracking-tight text-white"
3598
+ ".dg-stacked__main":
3599
+ apply: "mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8"
3600
+ examples:
3601
+ - title: "Light stacked layout"
3602
+ description: "Stacked shell with border-bottom nav, profile dropdown, and mobile menu (light mode)"
3603
+ ast:
3604
+ tag: div
3605
+ props:
3606
+ class: "dg-stacked"
3607
+ children:
3608
+ - tag: nav
3609
+ props:
3610
+ class: "dg-stacked__nav"
3611
+ children:
3612
+ - tag: div
3613
+ props:
3614
+ class: "dg-stacked__nav-container"
3615
+ children:
3616
+ - tag: div
3617
+ props:
3618
+ class: "dg-stacked__nav-bar"
3619
+ children:
3620
+ - tag: div
3621
+ props:
3622
+ class: "dg-stacked__nav-left"
3623
+ children:
3624
+ - tag: div
3625
+ props:
3626
+ class: "dg-stacked__logo"
3627
+ children:
3628
+ - tag: img
3629
+ props:
3630
+ src: "https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=600"
3631
+ alt: "Your Company"
3632
+ - tag: div
3633
+ props:
3634
+ class: "dg-stacked__nav-links"
3635
+ children:
3636
+ - tag: a
3637
+ props:
3638
+ href: "#"
3639
+ class: "dg-stacked__nav-link dg-stacked__nav-link--active"
3640
+ aria-current: "page"
3641
+ children:
3642
+ - "Dashboard"
3643
+ - tag: a
3644
+ props:
3645
+ href: "#"
3646
+ class: "dg-stacked__nav-link"
3647
+ children:
3648
+ - "Team"
3649
+ - tag: a
3650
+ props:
3651
+ href: "#"
3652
+ class: "dg-stacked__nav-link"
3653
+ children:
3654
+ - "Projects"
3655
+ - tag: a
3656
+ props:
3657
+ href: "#"
3658
+ class: "dg-stacked__nav-link"
3659
+ children:
3660
+ - "Calendar"
3661
+ - tag: div
3662
+ props:
3663
+ class: "dg-stacked__nav-right"
3664
+ children:
3665
+ - tag: button
3666
+ props:
3667
+ type: "button"
3668
+ class: "dg-stacked__notification-btn"
3669
+ children:
3670
+ - tag: span
3671
+ props:
3672
+ class: "sr-only"
3673
+ children:
3674
+ - "View notifications"
3675
+ - tag: svg
3676
+ props:
3677
+ viewBox: "0 0 24 24"
3678
+ fill: "none"
3679
+ stroke: "currentColor"
3680
+ stroke-width: "1.5"
3681
+ aria-hidden: "true"
3682
+ children:
3683
+ - tag: path
3684
+ props:
3685
+ d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
3686
+ stroke-linecap: "round"
3687
+ stroke-linejoin: "round"
3688
+ - tag: div
3689
+ props:
3690
+ class: "dg-stacked__profile"
3691
+ children:
3692
+ - tag: button
3693
+ props:
3694
+ class: "dg-stacked__profile-btn"
3695
+ children:
3696
+ - tag: span
3697
+ props:
3698
+ class: "sr-only"
3699
+ children:
3700
+ - "Open user menu"
3701
+ - tag: img
3702
+ props:
3703
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
3704
+ alt: ""
3705
+ - tag: div
3706
+ props:
3707
+ class: "dg-stacked__mobile-toggle"
3708
+ children:
3709
+ - tag: button
3710
+ props:
3711
+ type: "button"
3712
+ class: "dg-stacked__mobile-btn"
3713
+ children:
3714
+ - tag: span
3715
+ props:
3716
+ class: "sr-only"
3717
+ children:
3718
+ - "Open main menu"
3719
+ - tag: svg
3720
+ props:
3721
+ viewBox: "0 0 24 24"
3722
+ fill: "none"
3723
+ stroke: "currentColor"
3724
+ stroke-width: "1.5"
3725
+ aria-hidden: "true"
3726
+ class: "size-6"
3727
+ children:
3728
+ - tag: path
3729
+ props:
3730
+ d: "M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"
3731
+ stroke-linecap: "round"
3732
+ stroke-linejoin: "round"
3733
+ - tag: div
3734
+ props:
3735
+ class: "dg-stacked__content"
3736
+ children:
3737
+ - tag: header
3738
+ children:
3739
+ - tag: div
3740
+ props:
3741
+ class: "dg-stacked__page-header"
3742
+ children:
3743
+ - tag: h1
3744
+ props:
3745
+ class: "dg-stacked__page-title"
3746
+ children:
3747
+ - "Dashboard"
3748
+ - tag: main
3749
+ children:
3750
+ - tag: div
3751
+ props:
3752
+ class: "dg-stacked__main"
3753
+ - title: "Dark stacked layout"
3754
+ description: "Stacked shell with border-bottom nav on dark background"
3755
+ ast:
3756
+ tag: div
3757
+ props:
3758
+ class: "dg-stacked"
3759
+ children:
3760
+ - tag: nav
3761
+ props:
3762
+ class: "dg-stacked__nav"
3763
+ children:
3764
+ - tag: div
3765
+ props:
3766
+ class: "dg-stacked__nav-container"
3767
+ children:
3768
+ - tag: div
3769
+ props:
3770
+ class: "dg-stacked__nav-bar"
3771
+ children:
3772
+ - tag: div
3773
+ props:
3774
+ class: "dg-stacked__nav-left"
3775
+ children:
3776
+ - tag: div
3777
+ props:
3778
+ class: "dg-stacked__logo"
3779
+ children:
3780
+ - tag: img
3781
+ props:
3782
+ src: "https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=500"
3783
+ alt: "Your Company"
3784
+ - tag: div
3785
+ props:
3786
+ class: "dg-stacked__nav-links"
3787
+ children:
3788
+ - tag: a
3789
+ props:
3790
+ href: "#"
3791
+ class: "dg-stacked__nav-link dg-stacked__nav-link--active"
3792
+ aria-current: "page"
3793
+ children:
3794
+ - "Dashboard"
3795
+ - tag: a
3796
+ props:
3797
+ href: "#"
3798
+ class: "dg-stacked__nav-link"
3799
+ children:
3800
+ - "Team"
3801
+ - tag: a
3802
+ props:
3803
+ href: "#"
3804
+ class: "dg-stacked__nav-link"
3805
+ children:
3806
+ - "Projects"
3807
+ - tag: a
3808
+ props:
3809
+ href: "#"
3810
+ class: "dg-stacked__nav-link"
3811
+ children:
3812
+ - "Calendar"
3813
+ - tag: div
3814
+ props:
3815
+ class: "dg-stacked__nav-right"
3816
+ children:
3817
+ - tag: button
3818
+ props:
3819
+ type: "button"
3820
+ class: "dg-stacked__notification-btn"
3821
+ children:
3822
+ - tag: span
3823
+ props:
3824
+ class: "sr-only"
3825
+ children:
3826
+ - "View notifications"
3827
+ - tag: svg
3828
+ props:
3829
+ viewBox: "0 0 24 24"
3830
+ fill: "none"
3831
+ stroke: "currentColor"
3832
+ stroke-width: "1.5"
3833
+ aria-hidden: "true"
3834
+ children:
3835
+ - tag: path
3836
+ props:
3837
+ d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
3838
+ stroke-linecap: "round"
3839
+ stroke-linejoin: "round"
3840
+ - tag: div
3841
+ props:
3842
+ class: "dg-stacked__profile"
3843
+ children:
3844
+ - tag: button
3845
+ props:
3846
+ class: "dg-stacked__profile-btn"
3847
+ children:
3848
+ - tag: span
3849
+ props:
3850
+ class: "sr-only"
3851
+ children:
3852
+ - "Open user menu"
3853
+ - tag: img
3854
+ props:
3855
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
3856
+ alt: ""
3857
+ - tag: div
3858
+ props:
3859
+ class: "dg-stacked__mobile-toggle"
3860
+ children:
3861
+ - tag: button
3862
+ props:
3863
+ type: "button"
3864
+ class: "dg-stacked__mobile-btn"
3865
+ children:
3866
+ - tag: span
3867
+ props:
3868
+ class: "sr-only"
3869
+ children:
3870
+ - "Open main menu"
3871
+ - tag: svg
3872
+ props:
3873
+ viewBox: "0 0 24 24"
3874
+ fill: "none"
3875
+ stroke: "currentColor"
3876
+ stroke-width: "1.5"
3877
+ aria-hidden: "true"
3878
+ class: "size-6"
3879
+ children:
3880
+ - tag: path
3881
+ props:
3882
+ d: "M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"
3883
+ stroke-linecap: "round"
3884
+ stroke-linejoin: "round"
3885
+ - tag: div
3886
+ props:
3887
+ class: "dg-stacked__content"
3888
+ children:
3889
+ - tag: header
3890
+ children:
3891
+ - tag: div
3892
+ props:
3893
+ class: "dg-stacked__page-header"
3894
+ children:
3895
+ - tag: h1
3896
+ props:
3897
+ class: "dg-stacked__page-title"
3898
+ children:
3899
+ - "Dashboard"
3900
+ - tag: main
3901
+ children:
3902
+ - tag: div
3903
+ props:
3904
+ class: "dg-stacked__main"
3905
+ - title: "Stacked layout with profile dropdown open"
3906
+ description: "Stacked shell showing the profile dropdown menu expanded"
3907
+ ast:
3908
+ tag: div
3909
+ props:
3910
+ class: "dg-stacked"
3911
+ children:
3912
+ - tag: nav
3913
+ props:
3914
+ class: "dg-stacked__nav"
3915
+ children:
3916
+ - tag: div
3917
+ props:
3918
+ class: "dg-stacked__nav-container"
3919
+ children:
3920
+ - tag: div
3921
+ props:
3922
+ class: "dg-stacked__nav-bar"
3923
+ children:
3924
+ - tag: div
3925
+ props:
3926
+ class: "dg-stacked__nav-left"
3927
+ children:
3928
+ - tag: div
3929
+ props:
3930
+ class: "dg-stacked__logo"
3931
+ children:
3932
+ - tag: img
3933
+ props:
3934
+ src: "https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=500"
3935
+ alt: "Your Company"
3936
+ - tag: div
3937
+ props:
3938
+ class: "dg-stacked__nav-links"
3939
+ children:
3940
+ - tag: a
3941
+ props:
3942
+ href: "#"
3943
+ class: "dg-stacked__nav-link dg-stacked__nav-link--active"
3944
+ aria-current: "page"
3945
+ children:
3946
+ - "Dashboard"
3947
+ - tag: a
3948
+ props:
3949
+ href: "#"
3950
+ class: "dg-stacked__nav-link"
3951
+ children:
3952
+ - "Team"
3953
+ - tag: a
3954
+ props:
3955
+ href: "#"
3956
+ class: "dg-stacked__nav-link"
3957
+ children:
3958
+ - "Projects"
3959
+ - tag: a
3960
+ props:
3961
+ href: "#"
3962
+ class: "dg-stacked__nav-link"
3963
+ children:
3964
+ - "Calendar"
3965
+ - tag: div
3966
+ props:
3967
+ class: "dg-stacked__nav-right"
3968
+ children:
3969
+ - tag: button
3970
+ props:
3971
+ type: "button"
3972
+ class: "dg-stacked__notification-btn"
3973
+ children:
3974
+ - tag: span
3975
+ props:
3976
+ class: "sr-only"
3977
+ children:
3978
+ - "View notifications"
3979
+ - tag: svg
3980
+ props:
3981
+ viewBox: "0 0 24 24"
3982
+ fill: "none"
3983
+ stroke: "currentColor"
3984
+ stroke-width: "1.5"
3985
+ aria-hidden: "true"
3986
+ children:
3987
+ - tag: path
3988
+ props:
3989
+ d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
3990
+ stroke-linecap: "round"
3991
+ stroke-linejoin: "round"
3992
+ - tag: div
3993
+ props:
3994
+ class: "dg-stacked__profile"
3995
+ children:
3996
+ - tag: button
3997
+ props:
3998
+ class: "dg-stacked__profile-btn"
3999
+ children:
4000
+ - tag: span
4001
+ props:
4002
+ class: "sr-only"
4003
+ children:
4004
+ - "Open user menu"
4005
+ - tag: img
4006
+ props:
4007
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
4008
+ alt: ""
4009
+ - tag: div
4010
+ props:
4011
+ class: "dg-stacked__profile-menu"
4012
+ children:
4013
+ - tag: a
4014
+ props:
4015
+ href: "#"
4016
+ children:
4017
+ - "Your profile"
4018
+ - tag: a
4019
+ props:
4020
+ href: "#"
4021
+ children:
4022
+ - "Settings"
4023
+ - tag: a
4024
+ props:
4025
+ href: "#"
4026
+ children:
4027
+ - "Sign out"
4028
+ - tag: div
4029
+ props:
4030
+ class: "dg-stacked__content"
4031
+ children:
4032
+ - tag: header
4033
+ children:
4034
+ - tag: div
4035
+ props:
4036
+ class: "dg-stacked__page-header"
4037
+ children:
4038
+ - tag: h1
4039
+ props:
4040
+ class: "dg-stacked__page-title"
4041
+ children:
4042
+ - "Dashboard"
4043
+ - tag: main
4044
+ children:
4045
+ - tag: div
4046
+ props:
4047
+ class: "dg-stacked__main"
4048
+ - title: "Stacked layout with mobile menu open"
4049
+ description: "Stacked shell showing the mobile menu expanded with user info"
4050
+ ast:
4051
+ tag: div
4052
+ props:
4053
+ class: "dg-stacked"
4054
+ children:
4055
+ - tag: nav
4056
+ props:
4057
+ class: "dg-stacked__nav"
4058
+ children:
4059
+ - tag: div
4060
+ props:
4061
+ class: "dg-stacked__nav-container"
4062
+ children:
4063
+ - tag: div
4064
+ props:
4065
+ class: "dg-stacked__nav-bar"
4066
+ children:
4067
+ - tag: div
4068
+ props:
4069
+ class: "dg-stacked__nav-left"
4070
+ children:
4071
+ - tag: div
4072
+ props:
4073
+ class: "dg-stacked__logo"
4074
+ children:
4075
+ - tag: img
4076
+ props:
4077
+ src: "https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=500"
4078
+ alt: "Your Company"
4079
+ - tag: div
4080
+ props:
4081
+ class: "dg-stacked__mobile-toggle"
4082
+ children:
4083
+ - tag: button
4084
+ props:
4085
+ type: "button"
4086
+ class: "dg-stacked__mobile-btn"
4087
+ children:
4088
+ - tag: span
4089
+ props:
4090
+ class: "sr-only"
4091
+ children:
4092
+ - "Close main menu"
4093
+ - tag: svg
4094
+ props:
4095
+ viewBox: "0 0 24 24"
4096
+ fill: "none"
4097
+ stroke: "currentColor"
4098
+ stroke-width: "1.5"
4099
+ aria-hidden: "true"
4100
+ class: "size-6"
4101
+ children:
4102
+ - tag: path
4103
+ props:
4104
+ d: "M6 18 18 6M6 6l12 12"
4105
+ stroke-linecap: "round"
4106
+ stroke-linejoin: "round"
4107
+ - tag: div
4108
+ props:
4109
+ class: "dg-stacked__mobile-menu"
4110
+ children:
4111
+ - tag: div
4112
+ props:
4113
+ class: "dg-stacked__mobile-links"
4114
+ children:
4115
+ - tag: a
4116
+ props:
4117
+ href: "#"
4118
+ class: "dg-stacked__mobile-link dg-stacked__mobile-link--active"
4119
+ aria-current: "page"
4120
+ children:
4121
+ - "Dashboard"
4122
+ - tag: a
4123
+ props:
4124
+ href: "#"
4125
+ class: "dg-stacked__mobile-link"
4126
+ children:
4127
+ - "Team"
4128
+ - tag: a
4129
+ props:
4130
+ href: "#"
4131
+ class: "dg-stacked__mobile-link"
4132
+ children:
4133
+ - "Projects"
4134
+ - tag: a
4135
+ props:
4136
+ href: "#"
4137
+ class: "dg-stacked__mobile-link"
4138
+ children:
4139
+ - "Calendar"
4140
+ - tag: div
4141
+ props:
4142
+ class: "dg-stacked__mobile-user"
4143
+ children:
4144
+ - tag: div
4145
+ props:
4146
+ class: "dg-stacked__mobile-user-info"
4147
+ children:
4148
+ - tag: div
4149
+ props:
4150
+ class: "dg-stacked__mobile-user-avatar"
4151
+ children:
4152
+ - tag: img
4153
+ props:
4154
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
4155
+ alt: ""
4156
+ - tag: div
4157
+ props:
4158
+ class: "dg-stacked__mobile-user-details"
4159
+ children:
4160
+ - tag: div
4161
+ props:
4162
+ class: "dg-stacked__mobile-user-name"
4163
+ children:
4164
+ - "Tom Cook"
4165
+ - tag: div
4166
+ props:
4167
+ class: "dg-stacked__mobile-user-email"
4168
+ children:
4169
+ - "tom@example.com"
4170
+ - tag: button
4171
+ props:
4172
+ type: "button"
4173
+ class: "dg-stacked__notification-btn ml-auto"
4174
+ children:
4175
+ - tag: span
4176
+ props:
4177
+ class: "sr-only"
4178
+ children:
4179
+ - "View notifications"
4180
+ - tag: svg
4181
+ props:
4182
+ viewBox: "0 0 24 24"
4183
+ fill: "none"
4184
+ stroke: "currentColor"
4185
+ stroke-width: "1.5"
4186
+ aria-hidden: "true"
4187
+ children:
4188
+ - tag: path
4189
+ props:
4190
+ d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
4191
+ stroke-linecap: "round"
4192
+ stroke-linejoin: "round"
4193
+ - tag: div
4194
+ props:
4195
+ class: "dg-stacked__mobile-user-actions"
4196
+ children:
4197
+ - tag: a
4198
+ props:
4199
+ href: "#"
4200
+ children:
4201
+ - "Your profile"
4202
+ - tag: a
4203
+ props:
4204
+ href: "#"
4205
+ children:
4206
+ - "Settings"
4207
+ - tag: a
4208
+ props:
4209
+ href: "#"
4210
+ children:
4211
+ - "Sign out"
4212
+ - tag: div
4213
+ props:
4214
+ class: "dg-stacked__content"
4215
+ children:
4216
+ - tag: header
4217
+ children:
4218
+ - tag: div
4219
+ props:
4220
+ class: "dg-stacked__page-header"
4221
+ children:
4222
+ - tag: h1
4223
+ props:
4224
+ class: "dg-stacked__page-title"
4225
+ children:
4226
+ - "Dashboard"
4227
+ - tag: main
4228
+ children:
4229
+ - tag: div
4230
+ props:
4231
+ class: "dg-stacked__main"
4232
+ - title: "Stacked layout with full nav and content area"
4233
+ description: "Complete stacked shell with desktop nav, notification, and profile"
4234
+ ast:
4235
+ tag: div
4236
+ props:
4237
+ class: "dg-stacked"
4238
+ children:
4239
+ - tag: nav
4240
+ props:
4241
+ class: "dg-stacked__nav"
4242
+ children:
4243
+ - tag: div
4244
+ props:
4245
+ class: "dg-stacked__nav-container"
4246
+ children:
4247
+ - tag: div
4248
+ props:
4249
+ class: "dg-stacked__nav-bar"
4250
+ children:
4251
+ - tag: div
4252
+ props:
4253
+ class: "dg-stacked__nav-left"
4254
+ children:
4255
+ - tag: div
4256
+ props:
4257
+ class: "dg-stacked__logo"
4258
+ children:
4259
+ - tag: img
4260
+ props:
4261
+ src: "https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=500"
4262
+ alt: "Your Company"
4263
+ - tag: div
4264
+ props:
4265
+ class: "dg-stacked__nav-links"
4266
+ children:
4267
+ - tag: a
4268
+ props:
4269
+ href: "#"
4270
+ class: "dg-stacked__nav-link dg-stacked__nav-link--active"
4271
+ aria-current: "page"
4272
+ children:
4273
+ - "Dashboard"
4274
+ - tag: a
4275
+ props:
4276
+ href: "#"
4277
+ class: "dg-stacked__nav-link"
4278
+ children:
4279
+ - "Team"
4280
+ - tag: a
4281
+ props:
4282
+ href: "#"
4283
+ class: "dg-stacked__nav-link"
4284
+ children:
4285
+ - "Projects"
4286
+ - tag: a
4287
+ props:
4288
+ href: "#"
4289
+ class: "dg-stacked__nav-link"
4290
+ children:
4291
+ - "Calendar"
4292
+ - tag: div
4293
+ props:
4294
+ class: "dg-stacked__nav-right"
4295
+ children:
4296
+ - tag: button
4297
+ props:
4298
+ type: "button"
4299
+ class: "dg-stacked__notification-btn"
4300
+ children:
4301
+ - tag: span
4302
+ props:
4303
+ class: "sr-only"
4304
+ children:
4305
+ - "View notifications"
4306
+ - tag: svg
4307
+ props:
4308
+ viewBox: "0 0 24 24"
4309
+ fill: "none"
4310
+ stroke: "currentColor"
4311
+ stroke-width: "1.5"
4312
+ aria-hidden: "true"
4313
+ children:
4314
+ - tag: path
4315
+ props:
4316
+ d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
4317
+ stroke-linecap: "round"
4318
+ stroke-linejoin: "round"
4319
+ - tag: div
4320
+ props:
4321
+ class: "dg-stacked__profile"
4322
+ children:
4323
+ - tag: button
4324
+ props:
4325
+ class: "dg-stacked__profile-btn"
4326
+ children:
4327
+ - tag: span
4328
+ props:
4329
+ class: "sr-only"
4330
+ children:
4331
+ - "Open user menu"
4332
+ - tag: img
4333
+ props:
4334
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
4335
+ alt: ""
4336
+ - tag: div
4337
+ props:
4338
+ class: "dg-stacked__content"
4339
+ children:
4340
+ - tag: header
4341
+ children:
4342
+ - tag: div
4343
+ props:
4344
+ class: "dg-stacked__page-header"
4345
+ children:
4346
+ - tag: h1
4347
+ props:
4348
+ class: "dg-stacked__page-title"
4349
+ children:
4350
+ - "Dashboard"
4351
+ - tag: main
4352
+ children:
4353
+ - tag: div
4354
+ props:
4355
+ class: "dg-stacked__main"
4356
+ - title: "Stacked layout variant 6"
4357
+ description: "Stacked shell with border-bottom nav variant"
4358
+ ast:
4359
+ tag: div
4360
+ props:
4361
+ class: "dg-stacked"
4362
+ children:
4363
+ - tag: nav
4364
+ props:
4365
+ class: "dg-stacked__nav"
4366
+ children:
4367
+ - tag: div
4368
+ props:
4369
+ class: "dg-stacked__nav-container"
4370
+ children:
4371
+ - tag: div
4372
+ props:
4373
+ class: "dg-stacked__nav-bar"
4374
+ children:
4375
+ - tag: div
4376
+ props:
4377
+ class: "dg-stacked__nav-left"
4378
+ children:
4379
+ - tag: div
4380
+ props:
4381
+ class: "dg-stacked__logo"
4382
+ children:
4383
+ - tag: img
4384
+ props:
4385
+ src: "https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=500"
4386
+ alt: "Your Company"
4387
+ - tag: div
4388
+ props:
4389
+ class: "dg-stacked__nav-links"
4390
+ children:
4391
+ - tag: a
4392
+ props:
4393
+ href: "#"
4394
+ class: "dg-stacked__nav-link dg-stacked__nav-link--active"
4395
+ aria-current: "page"
4396
+ children:
4397
+ - "Dashboard"
4398
+ - tag: a
4399
+ props:
4400
+ href: "#"
4401
+ class: "dg-stacked__nav-link"
4402
+ children:
4403
+ - "Team"
4404
+ - tag: div
4405
+ props:
4406
+ class: "dg-stacked__nav-right"
4407
+ children:
4408
+ - tag: button
4409
+ props:
4410
+ type: "button"
4411
+ class: "dg-stacked__notification-btn"
4412
+ children:
4413
+ - tag: span
4414
+ props:
4415
+ class: "sr-only"
4416
+ children:
4417
+ - "View notifications"
4418
+ - tag: svg
4419
+ props:
4420
+ viewBox: "0 0 24 24"
4421
+ fill: "none"
4422
+ stroke: "currentColor"
4423
+ stroke-width: "1.5"
4424
+ aria-hidden: "true"
4425
+ children:
4426
+ - tag: path
4427
+ props:
4428
+ d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
4429
+ stroke-linecap: "round"
4430
+ stroke-linejoin: "round"
4431
+ - tag: div
4432
+ props:
4433
+ class: "dg-stacked__profile"
4434
+ children:
4435
+ - tag: button
4436
+ props:
4437
+ class: "dg-stacked__profile-btn"
4438
+ children:
4439
+ - tag: img
4440
+ props:
4441
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
4442
+ alt: ""
4443
+ - tag: div
4444
+ props:
4445
+ class: "dg-stacked__content"
4446
+ children:
4447
+ - tag: header
4448
+ children:
4449
+ - tag: div
4450
+ props:
4451
+ class: "dg-stacked__page-header"
4452
+ children:
4453
+ - tag: h1
4454
+ props:
4455
+ class: "dg-stacked__page-title"
4456
+ children:
4457
+ - "Dashboard"
4458
+ - title: "Stacked layout variant 7"
4459
+ description: "Stacked shell with border-bottom nav variant"
4460
+ ast:
4461
+ tag: div
4462
+ props:
4463
+ class: "dg-stacked"
4464
+ children:
4465
+ - tag: nav
4466
+ props:
4467
+ class: "dg-stacked__nav"
4468
+ children:
4469
+ - tag: div
4470
+ props:
4471
+ class: "dg-stacked__nav-container"
4472
+ children:
4473
+ - tag: div
4474
+ props:
4475
+ class: "dg-stacked__nav-bar"
4476
+ children:
4477
+ - tag: div
4478
+ props:
4479
+ class: "dg-stacked__nav-left"
4480
+ children:
4481
+ - tag: div
4482
+ props:
4483
+ class: "dg-stacked__logo"
4484
+ children:
4485
+ - tag: img
4486
+ props:
4487
+ src: "https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=500"
4488
+ alt: "Your Company"
4489
+ - tag: div
4490
+ props:
4491
+ class: "dg-stacked__nav-links"
4492
+ children:
4493
+ - tag: a
4494
+ props:
4495
+ href: "#"
4496
+ class: "dg-stacked__nav-link dg-stacked__nav-link--active"
4497
+ aria-current: "page"
4498
+ children:
4499
+ - "Dashboard"
4500
+ - tag: a
4501
+ props:
4502
+ href: "#"
4503
+ class: "dg-stacked__nav-link"
4504
+ children:
4505
+ - "Team"
4506
+ - tag: a
4507
+ props:
4508
+ href: "#"
4509
+ class: "dg-stacked__nav-link"
4510
+ children:
4511
+ - "Projects"
4512
+ - tag: a
4513
+ props:
4514
+ href: "#"
4515
+ class: "dg-stacked__nav-link"
4516
+ children:
4517
+ - "Calendar"
4518
+ - tag: div
4519
+ props:
4520
+ class: "dg-stacked__nav-right"
4521
+ children:
4522
+ - tag: button
4523
+ props:
4524
+ type: "button"
4525
+ class: "dg-stacked__notification-btn"
4526
+ children:
4527
+ - tag: span
4528
+ props:
4529
+ class: "sr-only"
4530
+ children:
4531
+ - "View notifications"
4532
+ - tag: svg
4533
+ props:
4534
+ viewBox: "0 0 24 24"
4535
+ fill: "none"
4536
+ stroke: "currentColor"
4537
+ stroke-width: "1.5"
4538
+ aria-hidden: "true"
4539
+ children:
4540
+ - tag: path
4541
+ props:
4542
+ d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
4543
+ stroke-linecap: "round"
4544
+ stroke-linejoin: "round"
4545
+ - tag: div
4546
+ props:
4547
+ class: "dg-stacked__profile"
4548
+ children:
4549
+ - tag: button
4550
+ props:
4551
+ class: "dg-stacked__profile-btn"
4552
+ children:
4553
+ - tag: img
4554
+ props:
4555
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
4556
+ alt: ""
4557
+ - tag: div
4558
+ props:
4559
+ class: "dg-stacked__content"
4560
+ children:
4561
+ - tag: header
4562
+ children:
4563
+ - tag: div
4564
+ props:
4565
+ class: "dg-stacked__page-header"
4566
+ children:
4567
+ - tag: h1
4568
+ props:
4569
+ class: "dg-stacked__page-title"
4570
+ children:
4571
+ - "Dashboard"
4572
+ - tag: main
4573
+ children:
4574
+ - tag: div
4575
+ props:
4576
+ class: "dg-stacked__main"
4577
+ - title: "Stacked layout variant 8"
4578
+ description: "Stacked shell with border-bottom nav variant"
4579
+ ast:
4580
+ tag: div
4581
+ props:
4582
+ class: "dg-stacked"
4583
+ children:
4584
+ - tag: nav
4585
+ props:
4586
+ class: "dg-stacked__nav"
4587
+ children:
4588
+ - tag: div
4589
+ props:
4590
+ class: "dg-stacked__nav-container"
4591
+ children:
4592
+ - tag: div
4593
+ props:
4594
+ class: "dg-stacked__nav-bar"
4595
+ children:
4596
+ - tag: div
4597
+ props:
4598
+ class: "dg-stacked__nav-left"
4599
+ children:
4600
+ - tag: div
4601
+ props:
4602
+ class: "dg-stacked__logo"
4603
+ children:
4604
+ - tag: img
4605
+ props:
4606
+ src: "https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=500"
4607
+ alt: "Your Company"
4608
+ - tag: div
4609
+ props:
4610
+ class: "dg-stacked__nav-links"
4611
+ children:
4612
+ - tag: a
4613
+ props:
4614
+ href: "#"
4615
+ class: "dg-stacked__nav-link dg-stacked__nav-link--active"
4616
+ aria-current: "page"
4617
+ children:
4618
+ - "Dashboard"
4619
+ - tag: a
4620
+ props:
4621
+ href: "#"
4622
+ class: "dg-stacked__nav-link"
4623
+ children:
4624
+ - "Team"
4625
+ - tag: a
4626
+ props:
4627
+ href: "#"
4628
+ class: "dg-stacked__nav-link"
4629
+ children:
4630
+ - "Projects"
4631
+ - tag: a
4632
+ props:
4633
+ href: "#"
4634
+ class: "dg-stacked__nav-link"
4635
+ children:
4636
+ - "Calendar"
4637
+ - tag: div
4638
+ props:
4639
+ class: "dg-stacked__nav-right"
4640
+ children:
4641
+ - tag: button
4642
+ props:
4643
+ type: "button"
4644
+ class: "dg-stacked__notification-btn"
4645
+ children:
4646
+ - tag: span
4647
+ props:
4648
+ class: "sr-only"
4649
+ children:
4650
+ - "View notifications"
4651
+ - tag: svg
4652
+ props:
4653
+ viewBox: "0 0 24 24"
4654
+ fill: "none"
4655
+ stroke: "currentColor"
4656
+ stroke-width: "1.5"
4657
+ aria-hidden: "true"
4658
+ children:
4659
+ - tag: path
4660
+ props:
4661
+ d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
4662
+ stroke-linecap: "round"
4663
+ stroke-linejoin: "round"
4664
+ - tag: div
4665
+ props:
4666
+ class: "dg-stacked__profile"
4667
+ children:
4668
+ - tag: button
4669
+ props:
4670
+ class: "dg-stacked__profile-btn"
4671
+ children:
4672
+ - tag: img
4673
+ props:
4674
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
4675
+ alt: ""
4676
+ - tag: div
4677
+ props:
4678
+ class: "dg-stacked__content"
4679
+ children:
4680
+ - tag: header
4681
+ children:
4682
+ - tag: div
4683
+ props:
4684
+ class: "dg-stacked__page-header"
4685
+ children:
4686
+ - tag: h1
4687
+ props:
4688
+ class: "dg-stacked__page-title"
4689
+ children:
4690
+ - "Dashboard"
4691
+ - tag: main
4692
+ children:
4693
+ - tag: div
4694
+ props:
4695
+ class: "dg-stacked__main"
4696
+ - title: "Stacked layout variant 9"
4697
+ description: "Stacked shell with border-bottom nav variant"
4698
+ ast:
4699
+ tag: div
4700
+ props:
4701
+ class: "dg-stacked"
4702
+ children:
4703
+ - tag: nav
4704
+ props:
4705
+ class: "dg-stacked__nav"
4706
+ children:
4707
+ - tag: div
4708
+ props:
4709
+ class: "dg-stacked__nav-container"
4710
+ children:
4711
+ - tag: div
4712
+ props:
4713
+ class: "dg-stacked__nav-bar"
4714
+ children:
4715
+ - tag: div
4716
+ props:
4717
+ class: "dg-stacked__nav-left"
4718
+ children:
4719
+ - tag: div
4720
+ props:
4721
+ class: "dg-stacked__logo"
4722
+ children:
4723
+ - tag: img
4724
+ props:
4725
+ src: "https://tailwindcss.com/plus-assets/img/logos/mark.svg?color=indigo&shade=500"
4726
+ alt: "Your Company"
4727
+ - tag: div
4728
+ props:
4729
+ class: "dg-stacked__nav-links"
4730
+ children:
4731
+ - tag: a
4732
+ props:
4733
+ href: "#"
4734
+ class: "dg-stacked__nav-link dg-stacked__nav-link--active"
4735
+ aria-current: "page"
4736
+ children:
4737
+ - "Dashboard"
4738
+ - tag: a
4739
+ props:
4740
+ href: "#"
4741
+ class: "dg-stacked__nav-link"
4742
+ children:
4743
+ - "Team"
4744
+ - tag: a
4745
+ props:
4746
+ href: "#"
4747
+ class: "dg-stacked__nav-link"
4748
+ children:
4749
+ - "Projects"
4750
+ - tag: a
4751
+ props:
4752
+ href: "#"
4753
+ class: "dg-stacked__nav-link"
4754
+ children:
4755
+ - "Calendar"
4756
+ - tag: div
4757
+ props:
4758
+ class: "dg-stacked__nav-right"
4759
+ children:
4760
+ - tag: button
4761
+ props:
4762
+ type: "button"
4763
+ class: "dg-stacked__notification-btn"
4764
+ children:
4765
+ - tag: span
4766
+ props:
4767
+ class: "sr-only"
4768
+ children:
4769
+ - "View notifications"
4770
+ - tag: svg
4771
+ props:
4772
+ viewBox: "0 0 24 24"
4773
+ fill: "none"
4774
+ stroke: "currentColor"
4775
+ stroke-width: "1.5"
4776
+ aria-hidden: "true"
4777
+ children:
4778
+ - tag: path
4779
+ props:
4780
+ d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
4781
+ stroke-linecap: "round"
4782
+ stroke-linejoin: "round"
4783
+ - tag: div
4784
+ props:
4785
+ class: "dg-stacked__profile"
4786
+ children:
4787
+ - tag: button
4788
+ props:
4789
+ class: "dg-stacked__profile-btn"
4790
+ children:
4791
+ - tag: img
4792
+ props:
4793
+ src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
4794
+ alt: ""
4795
+ - tag: div
4796
+ props:
4797
+ class: "dg-stacked__content"
4798
+ children:
4799
+ - tag: header
4800
+ children:
4801
+ - tag: div
4802
+ props:
4803
+ class: "dg-stacked__page-header"
4804
+ children:
4805
+ - tag: h1
4806
+ props:
4807
+ class: "dg-stacked__page-title"
4808
+ children:
4809
+ - "Dashboard"
4810
+ - tag: main
4811
+ children:
4812
+ - tag: div
4813
+ props:
4814
+ class: "dg-stacked__main"