mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38:05 +01:00
fix: change xhyrom.me to xhyrom.dev
This commit is contained in:
parent
3edd38607e
commit
3d0455368a
4 changed files with 14 additions and 14 deletions
|
@ -8,21 +8,21 @@ const { schemaOrg } = Astro.props;
|
|||
<!-- Primary Meta Tags -->
|
||||
<title>xHyroM</title>
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||
<link rel="canonical" href="https://xhyrom.me" />
|
||||
<link rel="canonical" href="https://xhyrom.dev" />
|
||||
<meta name="title" content="xHyroM" />
|
||||
<meta name="description" content="I'm Hyro :) o/" />
|
||||
<meta name="keywords" content="xhyrom developer dev hyro hyrousek" />
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://xhyrom.me/" />
|
||||
<meta property="og:url" content="https://xhyrom.dev/" />
|
||||
<meta property="og:title" content="xHyroM" />
|
||||
<meta property="og:description" content="I'm Hyro :) o/" />
|
||||
<meta property="og:image" content="/banner.png" />
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image" />
|
||||
<meta property="twitter:url" content="https://xhyrom.me/" />
|
||||
<meta property="twitter:url" content="https://xhyrom.dev/" />
|
||||
<meta property="twitter:title" content="xHyroM" />
|
||||
<meta property="twitter:description" content="I'm Hyro :) o/" />
|
||||
<meta property="twitter:image" content="/banner.png" />
|
||||
|
|
|
@ -9,21 +9,21 @@ const { title, date } = Astro.props;
|
|||
<!-- Primary Meta Tags -->
|
||||
<title>xHyroM</title>
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||
<link rel="canonical" href={`https://xhyrom.me${url}`} />
|
||||
<link rel="canonical" href={`https://xhyrom.dev${url}`} />
|
||||
<meta name="title" content="xHyroM" />
|
||||
<meta name="description" content={title} />
|
||||
<meta name="keywords" content="xhyrom developer dev hyro hyrousek" />
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content={`https://xhyrom.me${url}`} />
|
||||
<meta property="og:url" content={`https://xhyrom.dev${url}`} />
|
||||
<meta property="og:title" content="xHyroM" />
|
||||
<meta property="og:description" content={title} />
|
||||
<meta property="og:image" content="/banner.png" />
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image" />
|
||||
<meta property="twitter:url" content={`https://xhyrom.me${url}`} />
|
||||
<meta property="twitter:url" content={`https://xhyrom.dev${url}`} />
|
||||
<meta property="twitter:title" content="xHyroM" />
|
||||
<meta property="twitter:description" content={title} />
|
||||
<meta property="twitter:image" content="/banner.png" />
|
||||
|
@ -41,20 +41,20 @@ const { title, date } = Astro.props;
|
|||
"@type": "BlogPosting",
|
||||
mainEntityOfPage: {
|
||||
"@type": "WebPage",
|
||||
"@id": `https://xhyrom.me${url}`,
|
||||
"@id": `https://xhyrom.dev${url}`,
|
||||
},
|
||||
headline: title,
|
||||
description: title,
|
||||
image: "https://xhyrom.me/banner.png",
|
||||
image: "https://xhyrom.dev/banner.png",
|
||||
author: {
|
||||
"@type": "Person",
|
||||
name: "xHyroM",
|
||||
url: "https://xhyrom.me",
|
||||
url: "https://xhyrom.dev",
|
||||
},
|
||||
publisher: {
|
||||
"@type": "Person",
|
||||
name: "xHyroM",
|
||||
url: "https://xhyrom.me"
|
||||
url: "https://xhyrom.dev"
|
||||
},
|
||||
datePublished: new Date(date).toISOString().split("T")[0],
|
||||
dateModified: new Date(date).toISOString().split("T")[0],
|
||||
|
|
|
@ -28,8 +28,8 @@ const skills = [
|
|||
"@context": "https://schema.org/",
|
||||
"@type": "Person",
|
||||
name: "xHyroM",
|
||||
url: "https://xhyrom.me",
|
||||
image: "https://xhyrom.me/favicon.ico",
|
||||
url: "https://xhyrom.dev",
|
||||
image: "https://xhyrom.dev/favicon.ico",
|
||||
sameAs: [
|
||||
"https://twitter.com/hyrousek",
|
||||
"https://instagram.com/hyro.dev",
|
||||
|
|
|
@ -9,8 +9,8 @@ import Navbar from "../components/widgets/Navbar.astro";
|
|||
"@context": "https://schema.org/",
|
||||
"@type": "Person",
|
||||
name: "xHyroM",
|
||||
url: "https://xhyrom.me",
|
||||
image: "https://xhyrom.me/favicon.ico",
|
||||
url: "https://xhyrom.dev",
|
||||
image: "https://xhyrom.dev/favicon.ico",
|
||||
sameAs: [
|
||||
"https://twitter.com/hyrousek",
|
||||
"https://instagram.com/hyro.dev",
|
||||
|
|
Loading…
Reference in a new issue