Skip to content

Commit bd15157

Browse files
author
Oleksandr Pavlov
committed
Revert "up"
This reverts commit 552c584.
1 parent 552c584 commit bd15157

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Design is based on https://github.com/pycoder2000/blog
77

88
## Demo
99

10-
Demo: [alexpavlov.dev](https://www.alexpavlov.dev)
10+
Demo: [alexpavlov.dev](https://alexpavlov.dev)
1111

1212
# Motivation
1313

app/components/footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ export default function Footer() {
66
<div className="mt-10 flex flex-col items-center">
77
<div className="mb-2 hidden text-sm text-gray-500 dark:text-gray-400 md:flex">
88
<div className="mx-1">
9-
<Link href="https://www.alexpavlov.dev" className="link-underline">
9+
<Link href="https://alexpavlov.dev" className="link-underline">
1010
Alex Pavlov{` © ${new Date().getFullYear()}`}
1111
</Link>
1212
</div>
1313
</div>
1414
<div className="mb-2 text-sm text-gray-500 dark:text-gray-400 sm:block md:hidden lg:hidden">
1515
<div className="mx-1">
16-
<Link href="https://www.alexpavlov.dev" className="link-underline">
16+
<Link href="https://alexpavlov.dev" className="link-underline">
1717
Alex Pavlov{` © ${new Date().getFullYear()}`}
1818
</Link>
1919
</div>

app/sitemap.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ export default function sitemap(): MetadataRoute.Sitemap {
55

66
const urls = allPosts.map(p => {
77
return {
8-
url: `https://www.alexpavlov.dev/${p.url}`,
8+
url: `https://alexpavlov.dev/${p.url}`,
99
lastModified: new Date(),
1010
changeFrequency: 'monthly',
1111
priority: 1,
1212
} as any
1313
}).concat(
1414
allPages.map(p => {
1515
return {
16-
url: `https://www.alexpavlov.dev/${p._raw.flattenedPath}`,
16+
url: `https://alexpavlov.dev/${p._raw.flattenedPath}`,
1717
lastModified: new Date(),
1818
changeFrequency: 'monthly',
1919
priority: 1,
@@ -22,7 +22,7 @@ export default function sitemap(): MetadataRoute.Sitemap {
2222
)).concat(
2323
[
2424
{
25-
url: `https://www.alexpavlov.dev/blog`,
25+
url: `https://alexpavlov.dev/blog`,
2626
lastModified: new Date(),
2727
changeFrequency: 'monthly',
2828
priority: 1,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": {
66
"name": "Alex Pavlov",
77
"email": "[email protected]",
8-
"url": "https://www.alexpavlov.dev"
8+
"url": "https://alexpavlov.dev"
99
},
1010
"scripts": {
1111
"dev": "next dev",

0 commit comments

Comments
 (0)