chore(app): clean up links, metadata
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "phosphor-home",
|
||||
"version": "1.4.0",
|
||||
"version": "2.0.0",
|
||||
"license": "MIT",
|
||||
"homepage": "https://phosphoricons.com",
|
||||
"author": {
|
||||
@@ -18,7 +18,7 @@
|
||||
"UI",
|
||||
"UX"
|
||||
],
|
||||
"repository": "github:phosphor-icons/phosphor-home",
|
||||
"repository": "github:phosphor-icons/homepage",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@@ -116,13 +116,6 @@ const Footer = (_: FooterProps) => {
|
||||
<a className="main-link" href="mailto:hello@phosphoricons.com">
|
||||
hello@phosphoricons.com
|
||||
</a>
|
||||
. Check out our sister project:{" "}
|
||||
<a
|
||||
className="main-link"
|
||||
href="https://play.google.com/store/apps/details?id=com.tobiasfried.phosphor"
|
||||
>
|
||||
Phosphor for Android
|
||||
</a>
|
||||
. Type set in{" "}
|
||||
<a className="main-link" href="https://manropefont.com/">
|
||||
Manrope
|
||||
|
||||
@@ -23,7 +23,7 @@ type HeaderProps = {};
|
||||
|
||||
const handleGetStarted = () =>
|
||||
window.open(
|
||||
"https://github.com/phosphor-icons/phosphor-home#phosphor-icons",
|
||||
"https://github.com/phosphor-icons/homepage#phosphor-icons",
|
||||
"_blank",
|
||||
"noopener noreferrer"
|
||||
);
|
||||
|
||||
@@ -101,7 +101,6 @@ const DetailFooter = () => {
|
||||
...entry.tags,
|
||||
])
|
||||
)}
|
||||
isDark={isDark}
|
||||
/>
|
||||
),
|
||||
},
|
||||
|
||||
@@ -47,7 +47,7 @@ const IconGrid = (_: IconGridProps) => {
|
||||
return (
|
||||
<Notice>
|
||||
<span>Try searching a category or keyword:</span>
|
||||
<TagCloud name="empty-state" isDark={isDark} tags={defaultSearchTags} />
|
||||
<TagCloud name="empty-state" tags={defaultSearchTags} />
|
||||
</Notice>
|
||||
);
|
||||
|
||||
|
||||
@@ -8,10 +8,9 @@ import "./TagCloud.css";
|
||||
interface TagCloudProps {
|
||||
name: string;
|
||||
tags: string[];
|
||||
isDark: boolean;
|
||||
}
|
||||
|
||||
const TagCloud = ({ name, tags, isDark }: TagCloudProps) => {
|
||||
const TagCloud = ({ name, tags }: TagCloudProps) => {
|
||||
const isMobile = useMediaQuery("(max-width: 719px)");
|
||||
const setQuery = useSetRecoilState(searchQueryAtom);
|
||||
const handleTagClick = useCallback(
|
||||
|
||||
@@ -73,7 +73,7 @@ const Links = (_: LinksProps) => {
|
||||
<div>
|
||||
<ArrowElbowDownRight size={24} />
|
||||
<OutboundLink
|
||||
href="https://github.com/phosphor-icons/phosphor-home"
|
||||
href="https://github.com/phosphor-icons/homepage"
|
||||
eventLabel="GitHub"
|
||||
>
|
||||
GitHub
|
||||
@@ -82,7 +82,7 @@ const Links = (_: LinksProps) => {
|
||||
<div>
|
||||
<ArrowElbowDownRight size={24} />
|
||||
<OutboundLink
|
||||
href="https://github.com/phosphor-icons/phosphor-home/issues"
|
||||
href="https://github.com/phosphor-icons/homepage/issues"
|
||||
eventLabel="Request"
|
||||
>
|
||||
Request an icon
|
||||
|
||||
Reference in New Issue
Block a user