mirror of
				https://github.com/theoludwig/theoludwig.git
				synced 2025-11-04 00:19:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			257 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			257 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import Image from 'next/image'
 | 
						|
 | 
						|
export const ProfileLogo: React.FC = () => {
 | 
						|
  return (
 | 
						|
    <div className='px-2 py-6'>
 | 
						|
      <Image
 | 
						|
        width={370}
 | 
						|
        height={370}
 | 
						|
        src='/images/divlo_logo.png'
 | 
						|
        alt='Divlo'
 | 
						|
      />
 | 
						|
    </div>
 | 
						|
  )
 | 
						|
}
 |