Update logo

This commit is contained in:
ivan-sim
2023-09-18 09:04:33 +07:00
parent 6ed5983175
commit ed2d5ee90a
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
const getLocalizedData = async (locale) => { const getLocalizedData = async (locale) => {
const response = await fetch(`/image/${locale}.json`); // Mengambil file lokal berdasarkan bahasa yang dipilih const response = await fetch(`/lang/${locale}.json`); // Mengambil file lokal berdasarkan bahasa yang dipilih
const data = await response.json(); const data = await response.json();
return data; return data;
}; };

View File

@@ -17,7 +17,7 @@ export default function Logo({ disabledLink = false, sx }: Props) {
const logo = ( const logo = (
<Box sx={{ width: 40, height: 40, ...sx }}> <Box sx={{ width: 40, height: 40, ...sx }}>
<img src="/logo/logo_single.svg" alt="LinkSehat" /> <img src="/logo/logo-linksehat.png" alt="LinkSehat" />
</Box> </Box>
); );