Files
front/src/components/home/HomeTitle.jsx
Nikolai Petukhov 93ed4ce7fc home page is done
2024-09-21 15:53:37 +03:00

15 lines
405 B
JavaScript

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;