-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Verify is clientVersion is not for prerelease (#41)
- Loading branch information
Showing
9 changed files
with
5,298 additions
and
2,566 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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 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 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 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 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 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,35 +1,35 @@ | ||
--- | ||
interface Props { | ||
title: string; | ||
description: string; | ||
url: string; | ||
tags: string[]; | ||
title: string; | ||
description: string; | ||
url: string; | ||
tags: string[]; | ||
} | ||
const { title, description, url, tags} = Astro.props; | ||
const { title, description, url, tags } = Astro.props; | ||
const schema = { | ||
"@context": "https://schema.org", | ||
"@type": "Organization", | ||
"headline": title, | ||
"description": description, | ||
"url": url, | ||
"keywords": tags, | ||
"author": { | ||
"@type": "Person", | ||
"name": "Robert Olejnik", | ||
}, | ||
"address": { | ||
"@type": "PostalAddress", | ||
"streetAddress": "Cyfrowa 6", | ||
"city": "Szczecin", | ||
"postalCode": "71-441", | ||
"country": "Poland" | ||
}, | ||
"contantPoint": { | ||
"@type": "ContactPoint", | ||
"email": "[email protected]", | ||
}, | ||
"operatingSystem": "Windows, macOS, Linux", | ||
"@context": "https://schema.org", | ||
"@type": "Organization", | ||
headline: title, | ||
description: description, | ||
url: url, | ||
keywords: tags, | ||
author: { | ||
"@type": "Person", | ||
name: "Robert Olejnik", | ||
}, | ||
address: { | ||
"@type": "PostalAddress", | ||
streetAddress: "Cyfrowa 6", | ||
city: "Szczecin", | ||
postalCode: "71-441", | ||
country: "Poland", | ||
}, | ||
contantPoint: { | ||
"@type": "ContactPoint", | ||
email: "[email protected]", | ||
}, | ||
operatingSystem: "Windows, macOS, Linux", | ||
}; | ||
--- | ||
|
||
|
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,8 +1,9 @@ | ||
@font-face { | ||
font-family: "Poppins"; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local('Poppins'), | ||
url("/fonts/poppins/Poppins-Regular.woff2") format("woff2"); | ||
font-display: swap; | ||
} | ||
font-family: "Poppins"; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: | ||
local("Poppins"), | ||
url("/fonts/poppins/Poppins-Regular.woff2") format("woff2"); | ||
font-display: swap; | ||
} |