Skip to content

Commit cefba13

Browse files
committed
feat : change logo and brand name
1 parent 291e502 commit cefba13

File tree

8 files changed

+9
-5
lines changed

8 files changed

+9
-5
lines changed

web/csr/UrlShorter/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
<head>
55
<meta charset="UTF-8" />
6-
<link rel="icon" type="image/svg+xml" href="https://avatars.githubusercontent.com/u/147334352?s=48&v=4" />
6+
<link rel="icon" type="image/svg+xml" href="./src/assets/logos/ezlink-favicon-color.png" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>URL Shorter</title>
8+
<title>EzLink</title>
99
</head>
1010

1111
<body>
1.52 KB
Loading
10.7 KB
Loading
10.5 KB
Loading
13.2 KB
Loading
10.4 KB
Loading

web/csr/UrlShorter/src/components/Footer.jsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import logo from './../assets/logos/logo-no-background.png'
2+
3+
14
export default function Footer() {
25
return (
36
<>
@@ -8,8 +11,8 @@ export default function Footer() {
811
<div className="w-full max-w-screen-xl mx-auto p-4 md:py-8">
912
<div className="sm:flex sm:items-center sm:justify-between">
1013
<a href="https://flowbite.com/" className="flex items-center mb-4 sm:mb-0 space-x-3 rtl:space-x-reverse">
11-
<img src="https://avatars.githubusercontent.com/u/147334352?s=48&v=4" className="h-8" alt="Flowbite Logo" />
12-
<span className="self-center text-2xl font-semibold whitespace-nowrap dark:text-white">UrlShorter</span>
14+
<img src={logo} className="h-8" alt="Flowbite Logo" />
15+
{/* <span className="self-center text-2xl font-semibold whitespace-nowrap dark:text-white">UrlShorter</span> */}
1316
</a>
1417
<ul className="flex flex-wrap items-center mb-6 text-sm font-medium text-gray-500 sm:mb-0 dark:text-gray-400">
1518
<li>

web/csr/UrlShorter/src/components/Header.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Popover, PopoverButton, PopoverPanel } from '@headlessui/react'
22
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
33
import { faUserAlt } from '@fortawesome/free-solid-svg-icons'
4+
import logo from './../assets/logos/logo-no-background.png'
45

56

67
export default function Header() {
@@ -58,7 +59,7 @@ export default function Header() {
5859
</div>
5960
<div className="flex flex-1 items-center justify-center sm:items-stretch sm:justify-start">
6061
<div className="flex flex-shrink-0 items-center">
61-
<img className="h-8 w-auto" src="https://avatars.githubusercontent.com/u/147334352?s=48&v=4" alt="Your Company" />
62+
<img className="h-8 w-auto" src={logo} alt="Your Company" />
6263
</div>
6364
<div className="hidden sm:ml-6 sm:block">
6465
<div className="flex space-x-4">

0 commit comments

Comments
 (0)