Update logo source and alt text in Logo component

This commit is contained in:
lora322 2025-09-19 20:37:40 -04:00 committed by GitHub
parent 52b12200bc
commit 368d155be1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,9 +7,9 @@ type Props = {
export default function Logo({ className = '' }: Props) {
return (
<img
src={'https://flatlogic.com/logo.svg'}
src={'https://veracityres.com/wp-content/uploads/2024/08/VRES_logo_blk-red-tr.png'}
className={className}
alt={'Flatlogic logo'}
alt={'VRES logo'}
></img>
);
}