@@ -6,20 +6,15 @@ import { NumberInputComponent } from '../../shared/number-input/number-input.com
66import { VersionBadgeComponent } from '../../shared/version-badge/version-badge.component' ;
77import { ColorInputComponent } from '../../shared/color-input/color-input.component' ;
88import { SliderInputComponent } from '../../shared/slider-input/slider-input.component' ;
9+ import { FormSectionComponent } from '../../shared/form-section/form-section.component' ;
910import { createFormHelper } from '../../../utils/form-helpers' ;
1011import { KittyVersionService } from '../../../services/kitty-version.service' ;
1112
1213@Component ( {
1314 selector : 'app-cursor-form' ,
14- imports : [ CommonModule , FormsModule , NumberInputComponent , VersionBadgeComponent , ColorInputComponent , SliderInputComponent ] ,
15+ imports : [ CommonModule , FormsModule , NumberInputComponent , VersionBadgeComponent , ColorInputComponent , SliderInputComponent , FormSectionComponent ] ,
1516 template : `
16- <div class="space-y-6">
17- <div>
18- <h2 class="text-2xl font-bold text-kitty-primary mb-2">Cursor</h2>
19- <p class="text-kitty-text-dim">Customize cursor shape, color, and animation</p>
20- </div>
21-
22- <div class="space-y-6 bg-kitty-surface rounded-lg p-6 border border-kitty-border">
17+ <app-form-section title="Cursor" description="Customize cursor shape, color, and animation">
2318 <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
2419 <div class="form-group">
2520 <label class="block text-sm font-medium text-kitty-text mb-2">
@@ -222,8 +217,8 @@ import { KittyVersionService } from '../../../services/kitty-version.service';
222217 </div>
223218 </div>
224219 }
225- </div>
226- </div >
220+ }
221+ </app-form-section >
227222 ` ,
228223 styles : [ ]
229224} )
0 commit comments