home page is done
This commit is contained in:
14
src/components/home/HomeTitle.jsx
Normal file
14
src/components/home/HomeTitle.jsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from 'react';
|
||||
import chatIcon from './../../../images/chat.svg';
|
||||
import { URLs } from "../../__data__/urls";
|
||||
|
||||
const HomeTitle = () => {
|
||||
return (
|
||||
<a className="homeTitleWrapper" href={URLs.baseUrl}>
|
||||
<h1 className="montecarlo-regular homeTitle">Enterfront</h1>
|
||||
<img src={chatIcon} alt="Chat Icon" className="chatIcon"/>
|
||||
</a>
|
||||
);
|
||||
};
|
||||
|
||||
export default HomeTitle;
|
||||
Reference in New Issue
Block a user