Customize
General info
Components in the project have two ways for customization:
- Adding or editing classes in style file .lesswhich located at the customized component;
- Changing already prepared props variables based on Antdlibrary;
Logo and Left menu
You can change logo in Notifications component with path:
js/packages/web/src/components/Notifications/index.tsx
You can add Icon inside h1 tag in this function: 
const justContent = (
    <Popover
      className="noty-popover"
      placement="bottomLeft"
      content={content}
      trigger="click"
    >
      <h1 className="title">M</h1>
    </Popover>
);
For customizing left menu items you need open AppBar component with path:
js/packages/web/src/components/AppBar/index.tsx
Edit this DefaultActions component:
const DefaultActions = ({ vertical = false }: { vertical?: boolean }) => {
  const { connected } = useWallet();
  return (
    <div
      style={{
        display: 'flex',
        flexDirection: vertical ? 'column' : 'row',
      }}
    >
      <Link to={`/`}>
        <Button className="app-btn">Explore</Button>
      </Link>
      <Link to={`/artworks`}>
        <Button className="app-btn">
          {connected ? 'My Items' : 'Artworks'}
        </Button>
      </Link>
      <Link to={`/artists`}>
        <Button className="app-btn">Creators</Button>
      </Link>
    </div>
  );
};
or edit MetaplexMenu component for mobile version of menu, located inside this rule:
 if (width < 768) {
   '...component structure'
 }
Pay attention that in project using Antd library for styles, so you can customise menu buttons like: 
- overriding styles in the index.lessfile with path (current directory)
js/packages/web/src/components/AppBar/index.less
- using prepared styles from Antdlibrary find all variables for buttons you can on this link:
https://ant.design/components/button/
Right menu
For customizing right menu items you need open AppBar component with path:
js/packages/web/src/components/AppBar/index.tsx
And edit this code:
<div className="app-right app-bar-box">
  <UserActions />
  <CurrentUserBadge
    showBalance={false}
    showAddress={false}
    iconSize={24}
  />
</div>
Auction View

You can change PreSaleBanner component with path:
js/packages/web/src/components/PreSaleBanner/index.tsx
This component consists from two parts:
- Left - product view ArtContent, here can be videos or images
js/packages/web/src/components/ArtContent/index.tsx
For demonstrate video uses @cloudflare/stream-react library and Image Antd for images
for changing styles need send className through props from parent component 
<ArtContent
  pubkey={id}
  className="artwork-image"
  allowMeshRender={true}
/>
- Right - product info AuctionCard, here main info about product
js/packages/web/src/components/AuctionCard/index.tsx
This component has a props style where you can change global styles
example:
<AuctionCard
    style={{
      background: 'transparent',
      width: '100%',
      padding: 0,
      margin: 0,
    }}
/>
This component has a local styles file for customization too
js/packages/web/src/components/AuctionCard/index.less