Skip to content

Commit

Permalink
feat: update website URLs (remove www)
Browse files Browse the repository at this point in the history
  • Loading branch information
eyemono-moe committed Oct 9, 2024
1 parent 08239f7 commit 4a4462f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
User-agent: *
Allow: /

SiteMap: https://www.eyemono.moe/sitemap.xml
SiteMap: https://eyemono.moe/sitemap.xml
9 changes: 5 additions & 4 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<url>
<loc>https://www.eyemono.moe/</loc>
<loc>https://eyemono.moe/</loc>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.eyemono.moe/about</loc>
<loc>https://eyemono.moe/about</loc>
<priority>0.8</priority>
</url>
<url>
<loc>https://www.eyemono.moe/works</loc>
<loc>https://eyemono.moe/works</loc>
<priority>0.8</priority>
</url>
</urlset>
2 changes: 1 addition & 1 deletion src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { lazy } from "solid-js";
export const SITE_TITLE = "eyemono.moe Portfolio";
export const SITE_DESCRIPTION =
"eyemono.moe の ポートフォリオ | Web / 3DCG Developer";
export const SITE_URL = "https://www.eyemono.moe/";
export const SITE_URL = "https://eyemono.moe/";

export const WORKS = [
{
Expand Down
10 changes: 2 additions & 8 deletions src/entry-server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,13 @@ export default createHandler(() => (
<meta property="og:type" content="website" />
<meta property="og:title" content={SITE_TITLE} />
<meta property="og:description" content={SITE_DESCRIPTION} />
<meta
property="og:image"
content="https://www.eyemono.moe/OGP.webp"
/>
<meta property="og:image" content="https://eyemono.moe/OGP.webp" />

<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content={SITE_URL} />
<meta name="twitter:title" content={SITE_TITLE} />
<meta name="twitter:description" content={SITE_DESCRIPTION} />
<meta
name="twitter:image"
content="https://www.eyemono.moe/OGP.webp"
/>
<meta name="twitter:image" content="https://eyemono.moe/OGP.webp" />
{assets}
</head>
<body>
Expand Down

0 comments on commit 4a4462f

Please sign in to comment.