mirror of
https://github.com/SrIzan10/mainwebsite.git
synced 2026-06-06 00:56:58 +00:00
15 lines
465 B
TypeScript
15 lines
465 B
TypeScript
import './BlogNavBar.css'
|
|
|
|
export function BlogNavBar(props: Props) {
|
|
return (
|
|
<div className={'navBar'}>
|
|
<div className="iconContainer">
|
|
<img src="https://github.com/SrIzan10.png" alt="main profile picture" height="50vh" />
|
|
<p>{props.title || 'Sr Izan\'s blog'}</p>
|
|
</div>
|
|
<a href={'/'} className="backHomeLink">Go back home</a>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
type Props = { title?: string } |