feat: Update index.html title and favicon; add map asset
This commit is contained in:
parent
f5f41934a1
commit
3dceaa35e8
3 changed files with 3 additions and 3 deletions
|
|
@ -2,9 +2,9 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<link rel="icon" type="image/png" href="./src/assets/map.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite + React + TS</title>
|
||||
<title>MapLayer</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
|
|
|||
BIN
src/assets/map.png
Normal file
BIN
src/assets/map.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 718 B |
|
|
@ -268,7 +268,7 @@ const MapView: React.FC<MapViewProps> = ({ initialAddressData, initialTerm }) =>
|
|||
<button
|
||||
className="floating-ui"
|
||||
style={styles.actionButton}
|
||||
onClick={() => navigate('/site')}
|
||||
onClick={() => navigate('/')}
|
||||
title="Go Back"
|
||||
onMouseEnter={(e) => e.currentTarget.style.borderColor = isDarkMode ? 'rgba(255,255,255,0.4)' : 'rgba(0,0,0,0.4)'}
|
||||
onMouseLeave={(e) => e.currentTarget.style.borderColor = currentTheme.border}
|
||||
|
|
|
|||
Loading…
Reference in a new issue