config DHCP server on Vlan

Hello ,
I’m trying to make my VLAN be a DHCP server
but it won’t work - It doesn’t give IP to devices that connected
and also even if I give my computer and IP from the smae network I can’t see the router
what am I missing?
this is the config I have -

/interface bridge
add l2mtu=1524 name=bridge1 protocol-mode=rstp
/interface wireless
set [ find default-name=wlan2 ] antenna-mode=ant-b disabled=no frequency=5280 \
    frequency-mode=superchannel l2mtu=2290 mode=station-pseudobridge name=\
    wlan1-5Ghz radio-name=Unit3-103 scan-list=5200-5300 ssid=BeezzBH \
    tx-power=1 tx-power-mode=card-rates wireless-protocol=802.11 wmm-support=\
    enabled
/interface ethernet
set [ find default-name=ether1 ] name="ether1-Not use"
set [ find default-name=ether2 ] name=ether2-vlan
set [ find default-name=ether3 ] name=ether3-Computer
/interface vlan
add interface=ether2-vlan l2mtu=1520 name=vlan1 vlan-id=10
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=3GRouter
/ip hotspot user profile
set [ find default=yes ] idle-timeout=none keepalive-timeout=5m \
    mac-cookie-timeout=3d shared-users=60
/ip pool
add name=dhcp_pool1 ranges=192.168.1.1-192.168.1.20
/ip dhcp-server
add address-pool=dhcp_pool1 disabled=no interface=vlan1 name=dhcp1
/interface bridge filter
add chain=forward
/interface bridge port
add bridge=bridge1 interface=wlan1-5Ghz
add bridge=bridge1 interface=ether3-Computer
/interface bridge settings
set use-ip-firewall=yes use-ip-firewall-for-vlan=yes
/ip address
add address=10.0.0.103/24 interface=bridge1 network=10.0.0.0
add address=192.168.1.254/24 interface=vlan1 network=192.168.1.0
/ip dhcp-server config
set store-leases-disk=never
/ip dhcp-server network
add address=192.168.1.0/24 dns-server=0.0.0.0 gateway=192.168.1.254
/ip route
add distance=1 dst-address=192.168.1.0/24 gateway=10.0.0.105