fix: small optimizations to meta. (#258)

This commit is contained in:
Luca Burgio 2023-03-07 22:37:53 +01:00 committed by GitHub
parent c9160cb913
commit f94f631d49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 16 additions and 9 deletions

Binary file not shown.

View file

@ -12,7 +12,9 @@ export function SEO({ title }: SEOProps) {
<title>{pageTitle}</title> <title>{pageTitle}</title>
<meta <meta
name="description" name="description"
content="The Simple and Definitive hand-crafted SVG Icons library." content="Iconoir is the biggest open source icon library that provides a massive selection of high-quality icons, available for free download.
No premium options or email sign-up required, free for real. Icons available in SVG,
Font, React, React Native, and Flutter libraries, Figma and Framer."
/> />
<link rel="icon" href="/favicon.ico" /> <link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
@ -27,7 +29,9 @@ export function SEO({ title }: SEOProps) {
/> />
<meta <meta
property="og:description" property="og:description"
content="The Simple and Definitive hand-crafted SVG Icons Library." content="Iconoir is the biggest open source icon library that provides a massive selection of high-quality icons, available for free download.
No premium options or email sign-up required, free for real. Icons available in SVG,
Font, React, React Native, and Flutter libraries, Figma and Framer."
/> />
<meta property="og:image:width" content="1270" /> <meta property="og:image:width" content="1270" />
<meta property="og:image:height" content="760" /> <meta property="og:image:height" content="760" />
@ -45,11 +49,11 @@ export function SEO({ title }: SEOProps) {
/> />
<meta <meta
name="twitter:image:alt" name="twitter:image:alt"
content="The Simple and Definitive hand-crafted SVG Icons Library." content="The biggest open source icon library with tons of free icons."
/> />
<meta <meta
name="twitter:description" name="twitter:description"
content="The Simple and Definitive hand-crafted SVG Icons Library." content="The biggest open source icon library with tons of free icons."
/> />
<meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:card" content="summary_large_image" />
</Head> </Head>

View file

@ -40,9 +40,8 @@ const Home: NextPage<HomeProps> = ({
<HeroText>Your new default library.</HeroText> <HeroText>Your new default library.</HeroText>
</HeaderBackground> </HeaderBackground>
<HeroDescription> <HeroDescription>
Iconoir is one of the biggest open source icons libraries. No premium A high-quality selection of free icons. No premium options or sign-ups. Your new alternative to Noun Project, Flaticon, and all Figma resources. Available in SVG,
icons, no email sign-up, no newsletters. Icons available in SVG format, Font, React, React Native, Flutter, Figma and Framer.
Font, React and React Native libraries, Figma and Framer.
</HeroDescription> </HeroDescription>
<StatsContainer> <StatsContainer>
<Stat <Stat

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{ {
"name": "iconoir", "name": "iconoir",
"version": "6.4.0", "version": "6.4.0",
"description": "A Simple and Definitive Open-Source Icons Library", "description": "The biggest open source icon library with tons of free icons.",
"type": "module", "type": "module",
"files": [ "files": [
"css", "css",
@ -19,9 +19,12 @@
"url": "git+https://github.com/lucaburgio/iconoir.git" "url": "git+https://github.com/lucaburgio/iconoir.git"
}, },
"keywords": [ "keywords": [
"free",
"icons", "icons",
"library", "library",
"svg", "svg",
"react",
"flutter",
"css" "css"
], ],
"license": "MIT", "license": "MIT",

View file

@ -1133,6 +1133,7 @@ export './submit_document.dart';
export './substract.dart'; export './substract.dart';
export './suggestion.dart'; export './suggestion.dart';
export './sun_light.dart'; export './sun_light.dart';
export './svg.dart';
export './svg_format.dart'; export './svg_format.dart';
export './sweep_3_d.dart'; export './sweep_3_d.dart';
export './swimming.dart'; export './swimming.dart';

Binary file not shown.