Files
dmenu-admin/src/pages/settings/GeneralSettings.tsx
T
2025-11-22 15:17:38 +03:30

25 lines
637 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import ColorPicker from '@/components/ColorPicker'
import Input from '@/components/Input'
import { type FC } from 'react'
const GeneralSettings: FC = () => {
return (
<div className='bg-white rounded-4xl p-8'>
<div className='text-lg font-light'>
تنظیمات عمومی
</div>
<div className='mt-8 rowTwoInput'>
<Input
label='نام رستوران'
/>
<ColorPicker
label='رنگ منو'
/>
</div>
</div>
)
}
export default GeneralSettings