-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: major rework of favicons based on effective/favicon
- Loading branch information
Showing
27 changed files
with
147 additions
and
201 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import icoPath from "./sebastian-software.ico"; | ||
import appManifestPath from "./sebastian-software.webmanifest"; | ||
import touchIcon152 from "./sebastian-software-apple-152.png"; | ||
import touchIcon167 from "./sebastian-software-apple-167.png"; | ||
import touchIcon180 from "./sebastian-software-apple-180.png"; | ||
import svgPath from "./sebastian-software-opt.svg"; | ||
|
||
export function Favicon() { | ||
return ( | ||
<> | ||
<link rel="icon" href={icoPath} sizes="32x32" /> | ||
<link rel="manifest" href={appManifestPath} /> | ||
<link rel="icon" href={svgPath} type="image/svg+xml" /> | ||
<link rel="apple-touch-icon" sizes="152x152" href={touchIcon152} /> | ||
<link rel="apple-touch-icon" sizes="167x167" href={touchIcon167} /> | ||
<link rel="apple-touch-icon" sizes="180x180" href={touchIcon180} /> | ||
</> | ||
); | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from "./FavIcon" | ||
export * from "./SebastianSoftware" |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file not shown.
File renamed without changes
6 changes: 6 additions & 0 deletions
6
...e/favicon2/sebastian-software.webmanifest → ...ge/favicon/sebastian-software.webmanifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.