Merge pull request #116 from getmaxun/logofix

fix: logo path fixed
This commit is contained in:
Karishma Shukla
2024-11-03 21:25:39 +05:30
committed by GitHub
4 changed files with 5 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
name="description"
content="Web site created using Vite"
/>
<link rel="icon" type="image/png" href="img/maxunlogo.png">
<link rel="icon" type="image/png" href="src/assets/maxunlogo.png">
<title>Maxun | Open Source No Code Web Data Extraction Platform</title>
</head>
<body>

View File

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -2,6 +2,7 @@ import React from 'react';
import styled from 'styled-components';
import { Typography, FormControlLabel, Checkbox, Box } from '@mui/material';
import { useActionContext } from '../../context/browserActions';
import MaxunLogo from "../../assets/maxunlogo.png";
const CustomBoxContainer = styled.div`
position: relative;
@@ -110,7 +111,7 @@ const ActionDescriptionBox = () => {
return (
<CustomBoxContainer>
<Logo src="/img/maxunlogo.png" alt="Maxun Logo" />
<Logo src={MaxunLogo} alt="Maxun Logo" />
<Triangle />
<Content>
{renderActionDescription()}

View File

@@ -10,6 +10,7 @@ import { AuthContext } from '../../context/auth';
import { SaveRecording } from '../molecules/SaveRecording';
import DiscordIcon from '../atoms/DiscordIcon';
import { apiUrl } from '../../apiConfig';
import MaxunLogo from "../../assets/maxunlogo.png";
interface NavBarProps {
recordingName: string;
@@ -55,7 +56,7 @@ export const NavBar: React.FC<NavBarProps> = ({ recordingName, isRecording }) =>
display: 'flex',
justifyContent: 'flex-start',
}}>
<img src="img/maxunlogo.png" width={45} height={40} style={{ borderRadius: '5px', margin: '5px 0px 5px 15px' }} />
<img src={MaxunLogo} width={45} height={40} style={{ borderRadius: '5px', margin: '5px 0px 5px 15px' }} />
<div style={{ padding: '11px' }}><ProjectName>Maxun</ProjectName></div>
</div>
{