refactor: update logo assets and fix logo paths in Header and Footer components

- Added mainlogo.png to public/images directory
- Created mainlogo.svg and logomark.svg in src/images/logos directory
- Updated Header and HeaderDark to use mainlogo.svg instead of logo_1.png
- Fixed Footer logomark path from /images/logomark.svg to src/images/logos/logomark.svg
This commit is contained in:
2025-11-19 12:48:55 +01:00
parent a9f53224cf
commit 6beb9c1432
6 changed files with 7 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ import { useState } from 'react'
import { Link } from 'react-router-dom'
import { Container } from './Container'
import { Button } from './Button'
import pmyceliumLogo from '../images/logos/logo_1.png'
import pmyceliumLogo from '../images/logos/mainlogo.svg'
import { Dialog } from '@headlessui/react'
import { Bars3Icon, XMarkIcon } from '@heroicons/react/24/outline'