Instead of adding "input_shape" to your first layer ...
add Input(shape) as your first layer
classifer.add(keras.Input(shape=(11,)))
Then your layers
classifer.add(Dense(6, activation = 'relu'))
More about the sequential model here: https://keras.io/guides/sequential_model/