Skip to content

Commit

Permalink
Merge pull request #88 from SSWConsulting/87-fix-remote-links
Browse files Browse the repository at this point in the history
Update logo and contact URLs to include `www` subdomain in an attempt to reduce noise in SEMrush audit
  • Loading branch information
wicksipedia authored Apr 11, 2024
2 parents bbf48dd + cfc2ef4 commit fd28ff0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/components/Logo/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<>
Expand Down
2 changes: 1 addition & 1 deletion lib/components/PhoneButton/PhoneButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down

0 comments on commit fd28ff0

Please sign in to comment.