how do I add a copy button to my wix website? So that customers can copy the website URL and then share it with their friends? thank you

import wixWindow from 'wix-window'
import wixLocation from 'wix-location'

$w.onReady(() => {
    $w('#button').onClick( async () => {
        await wixWindow.copyToClipboard(wixLocation.url)
    })
})