Skip to content

Commit

Permalink
987987978987897987
Browse files Browse the repository at this point in the history
  • Loading branch information
Yadzzz committed Jan 7, 2024
1 parent d0c808a commit a05cd0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion template_web.client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head class="h-full bg-gray-100">
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/src/assets/icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Bus Service</title>
Expand Down
3 changes: 2 additions & 1 deletion template_web.client/src/Components/Shared/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { useState } from 'react';
import Icon from '../../assets/icon.png';

const Header = () => {
const [isMenuOpen, setIsMenuOpen] = useState(false);
Expand All @@ -12,7 +13,7 @@ const Header = () => {
<span className="sr-only">Your Company</span>
<img
className="h-8 w-auto"
src="https://tailwindui.com/img/logos/mark.svg?color=indigo&shade=600"
src={Icon}
alt="Company Logo"
/>
</a>
Expand Down
Binary file added template_web.client/src/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a05cd0c

Please sign in to comment.