21 lines
563 B
JavaScript
21 lines
563 B
JavaScript
import Image from 'next/image'
|
|
import Link from 'next/link'
|
|
import React from 'react'
|
|
|
|
function Logo() {
|
|
return (
|
|
<Link href='/'>
|
|
<div className="flex items-center justify-start gap-[5px]">
|
|
<Image
|
|
src='/assets/images/logo.png'
|
|
width={30}
|
|
height={30}
|
|
alt="logo"
|
|
/>
|
|
<p className="text-[#526CAC] text-[16px] font-bold font-kalame">نوبت ۷۲۴</p>
|
|
</div>
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
export default Logo |