Skip to content

Commit

Permalink
BAH-2411 | Add. Missing Favicon and Header (#112)
Browse files Browse the repository at this point in the history
* [Rahul] | Add. Header in Dashboard

* [Rahul] | BAH-2411 | Add. Missing Favicon and Header
  • Loading branch information
rahu1ramesh authored Jun 20, 2024
1 parent 888bbb0 commit f659aec
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="utf-8">
<title>Implementer Interface</title>
<link href="/implementer-interface/favicon.ico" rel="icon" type="image/x-icon">
<link href="/implementer-interface/styles.css" rel="stylesheet" type="text/css"/>
</head>
<body>
Expand Down
Binary file added public/favicon.ico
Binary file not shown.
2 changes: 2 additions & 0 deletions src/common/Dashboard.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import React from 'react';
import { Link } from 'react-router-dom';
import FormBuilderHeader from 'form-builder/components/FormBuilderHeader.jsx';

const Dashboard = () =>
<div>
<FormBuilderHeader />
<div className="form-builder-link">
<Link to="form-builder">
<i className="fa fa-user-secret"></i>
Expand Down
5 changes: 2 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ module.exports = {
new webpack.HotModuleReplacementPlugin(),
new ExtractTextPlugin('styles.css', { allChunks: true }),
new CopyWebpackPlugin([
{
from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts'),
},
{ from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts') },
{ from: path.join(__dirname, './public/favicon.ico'), to: path.join(__dirname, 'dist/favicon.ico') }
], { copyUnmodified: true }
),
new StyleLintPlugin(),
Expand Down

0 comments on commit f659aec

Please sign in to comment.