Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update component to use latest version of assets favicons & logo package #36

Merged
merged 2 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div align="center">

<img height="120" src="https://registry.npmmirror.com/@lobehub/assets-logo/1.0.0/files/assets/logo-3d.webp">
<img height="120" src="https://registry.npmmirror.com/@lobehub/assets-logo/latest/files/assets/logo-3d.webp">
<img height="120" src="https://gw.alipayobjects.com/zos/kitchen/qJ3l3EPsdW/split.svg">
<img height="120" src="https://gw.alipayobjects.com/zos/bmw-prod/d3e3eb39-1cd7-4aa5-827c-877deced6b7e/lalxt4g3_w256_h256.png">

Expand Down Expand Up @@ -36,6 +36,8 @@ dumi-theme-lobehub is a documentation site theme package designed for `Dumi 2`.
- [🀯 Usage](#-usage)
- [⌨️ Local Development](#️-local-development)
- [🀝 Contributing](#-contributing)
- [πŸ”— Links](#-links)
- [More Products](#more-products)

####

Expand Down Expand Up @@ -105,7 +107,7 @@ interface SiteThemeConfig {
}
```

> **Note**\
> \[!NOTE]\
> For detailed configuration, please refer to the [πŸ“˜ Type file](https://github.com/lobehub/dumi-theme-lobehub/blob/master/src/types/config.ts) / [πŸ“˜ Example](https://github.com/lobehub/dumi-theme-lobehub/blob/master/example/.dumirc.ts).

<div align="right">
Expand Down
10 changes: 5 additions & 5 deletions src/components/Favicons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,29 @@ const Favicons = memo(() => {
return (
<Helmet>
<link
href="https://registry.npmmirror.com/@lobehub/assets-favicons/1.1.0/files/assets/apple-touch-icon.png"
href="https://registry.npmmirror.com/@lobehub/assets-favicons/latest/files/assets/apple-touch-icon.png"
rel="apple-touch-icon"
sizes="180x180"
/>
<link
href="https://registry.npmmirror.com/@lobehub/assets-favicons/1.1.0/files/assets/favicon-32x32.png"
href="https://registry.npmmirror.com/@lobehub/assets-favicons/latest/files/assets/favicon-32x32.png"
rel="icon"
sizes="32x32"
type="image/png"
/>
<link
href="https://registry.npmmirror.com/@lobehub/assets-favicons/1.1.0/files/assets/favicon-16x16.png"
href="https://registry.npmmirror.com/@lobehub/assets-favicons/latest/files/assets/favicon-16x16.png"
rel="icon"
sizes="16x16"
type="image/png"
/>
<link
href="https://registry.npmmirror.com/@lobehub/assets-favicons/1.1.0/files/assets/site.webmanifest"
href="https://registry.npmmirror.com/@lobehub/assets-favicons/latest/files/assets/site.webmanifest"
rel="manifest"
/>
<link
color="#000000"
href="https://registry.npmmirror.com/@lobehub/assets-favicons/1.1.0/files/assets/safari-pinned-tab.svg"
href="https://registry.npmmirror.com/@lobehub/assets-favicons/latest/files/assets/safari-pinned-tab.svg"
rel="mask-icon"
/>
<meta content="LobeHub" name="apple-mobile-web-app-title" />
Expand Down