Store site search

Hi there, i am trying to create a store search bar but it doesn’t work this is my site https://lucasgariglia.wixsite.com/wixcode/results and this is the code i used =

import wixData from ‘wix-data’ ;
$w.onReady ( function () {
//TODO: write your page related code here…

}) ;

export function searchBar_keyPress(event, $w) {
let searchValue = $w(“#searchBar”).value;
$w("#repeater1).setFilter(wixData.filter().contains(‘name’, searchValue).
or(wixData.filter().contains(‘city’, searchValue))) ;
}