diff --git a/lib/components/Logo/Logo.tsx b/lib/components/Logo/Logo.tsx index b7fc75c..db652ef 100644 --- a/lib/components/Logo/Logo.tsx +++ b/lib/components/Logo/Logo.tsx @@ -8,8 +8,8 @@ const Logo: React.FC = () => { const date = new Date(); const isXmas = date.getMonth() === 11 && date.getDate() <= 25; const logoPath = isXmas - ? "https://ssw.com.au/images/ssw-logo-xmas.svg" - : "https://ssw.com.au/images/ssw-logo.svg"; + ? "https://www.ssw.com.au/images/ssw-logo-xmas.svg" + : "https://www.ssw.com.au/images/ssw-logo.svg"; return ( <> diff --git a/lib/components/PhoneButton/PhoneButton.tsx b/lib/components/PhoneButton/PhoneButton.tsx index 3b6d77c..f7a1ae4 100644 --- a/lib/components/PhoneButton/PhoneButton.tsx +++ b/lib/components/PhoneButton/PhoneButton.tsx @@ -13,7 +13,7 @@ type PhoneButtonProps = { export const PhoneButton = ({ className }: PhoneButtonProps) => { const CustomLink = useLinkComponent(); - const [url, setUrl] = useState("https://ssw.com.au/company/contact-us"); + const [url, setUrl] = useState("https://www.ssw.com.au/company/contact-us"); const [text, setText] = useState("CONTACT US"); useEffect(() => {