@@ -8,7 +8,7 @@
|
|||||||
name="description"
|
name="description"
|
||||||
content="Web site created using Vite"
|
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>
|
<title>Maxun | Open Source No Code Web Data Extraction Platform</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
@@ -2,6 +2,7 @@ import React from 'react';
|
|||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import { Typography, FormControlLabel, Checkbox, Box } from '@mui/material';
|
import { Typography, FormControlLabel, Checkbox, Box } from '@mui/material';
|
||||||
import { useActionContext } from '../../context/browserActions';
|
import { useActionContext } from '../../context/browserActions';
|
||||||
|
import MaxunLogo from "../../assets/maxunlogo.png";
|
||||||
|
|
||||||
const CustomBoxContainer = styled.div`
|
const CustomBoxContainer = styled.div`
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -110,7 +111,7 @@ const ActionDescriptionBox = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<CustomBoxContainer>
|
<CustomBoxContainer>
|
||||||
<Logo src="/img/maxunlogo.png" alt="Maxun Logo" />
|
<Logo src={MaxunLogo} alt="Maxun Logo" />
|
||||||
<Triangle />
|
<Triangle />
|
||||||
<Content>
|
<Content>
|
||||||
{renderActionDescription()}
|
{renderActionDescription()}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import { AuthContext } from '../../context/auth';
|
|||||||
import { SaveRecording } from '../molecules/SaveRecording';
|
import { SaveRecording } from '../molecules/SaveRecording';
|
||||||
import DiscordIcon from '../atoms/DiscordIcon';
|
import DiscordIcon from '../atoms/DiscordIcon';
|
||||||
import { apiUrl } from '../../apiConfig';
|
import { apiUrl } from '../../apiConfig';
|
||||||
|
import MaxunLogo from "../../assets/maxunlogo.png";
|
||||||
|
|
||||||
interface NavBarProps {
|
interface NavBarProps {
|
||||||
recordingName: string;
|
recordingName: string;
|
||||||
@@ -55,7 +56,7 @@ export const NavBar: React.FC<NavBarProps> = ({ recordingName, isRecording }) =>
|
|||||||
display: 'flex',
|
display: 'flex',
|
||||||
justifyContent: 'flex-start',
|
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 style={{ padding: '11px' }}><ProjectName>Maxun</ProjectName></div>
|
||||||
</div>
|
</div>
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user