[frontend]: Add icons

This commit is contained in:
2025-02-28 12:35:23 +00:00
parent 2981fbe474
commit 624b60980b
13 changed files with 94 additions and 27 deletions

View File

@ -0,0 +1,14 @@
import React from "react";
import { Helmet } from "react-helmet";
import favicon from "../../src/assets/icons/train-station.png"
const TabTitle = () => {
return (
<Helmet>
<title>Iompar</title>
<link rel="icon" href={favicon} />
</Helmet>
);
};
export default TabTitle;