File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ export default function Container(props) {
51
51
< title > { meta . title } </ title >
52
52
< meta name = "robots" content = "follow, index" />
53
53
< meta content = { meta . description } name = "description" />
54
- < meta property = "og:url" content = { `https://codewithdev.github.io ${ router . asPath } ` } />
55
- < link rel = "canonical" href = { `https://codewithdev.github.io ${ router . asPath } ` } />
54
+ < meta property = "og:url" content = { `https://codewithdev.vercel.app ${ router . asPath } ` } />
55
+ < link rel = "canonical" href = { `https://codewithdev.vercel.app ${ router . asPath } ` } />
56
56
< meta property = "og:type" content = { meta . type } />
57
57
< meta property = "og:site_name" content = "Dev Prakash Sharma" />
58
58
< meta property = "og:description" content = { meta . description } />
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export default function BlogLayout({
55
55
< div className = "text-sm text-gray-700 dark:text-gray-300" >
56
56
< a
57
57
href = { `https://mobile.twitter.com/search?q=${ encodeURIComponent (
58
- `https://codewithdev.github.io /blog/${ post . slug } `
58
+ `https://codewithdev.vercel.app /blog/${ post . slug } `
59
59
) } `}
60
60
target = "_blank"
61
61
rel = "noopener noreferrer"
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ export default function About() {
23
23
</ li >
24
24
< li >
25
25
Website:{ ' ' }
26
- < Link href = "https://codewithdev.github.io " >
27
- < a > https://codewithdev.github.io </ a >
26
+ < Link href = "https://codewithdev.vercel.app " >
27
+ < a > https://codewithdev.vercel.app </ a >
28
28
</ Link >
29
29
</ li >
30
30
< li >
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ import { indexQuery } from 'lib/queries';
5
5
export async function getServerSideProps ( { res } ) {
6
6
const feed = new RSS ( {
7
7
title : 'Dev Prakash Sharma' ,
8
- site_url : 'https://codewithdev.github.io ' ,
9
- feed_url : 'https://codewithdev.github.io /feed.xml'
8
+ site_url : 'https://codewithdev.vercel.app ' ,
9
+ feed_url : 'https://codewithdev.vercel.app /feed.xml'
10
10
} ) ;
11
11
12
12
const allPosts = await sanityClient . fetch ( indexQuery ) ;
13
13
allPosts . map ( ( post ) => {
14
14
feed . item ( {
15
15
title : post . title ,
16
- url : `https://codewithdev.github.io /blog/${ post . slug } ` ,
16
+ url : `https://codewithdev.vercel.app /blog/${ post . slug } ` ,
17
17
date : post . date ,
18
18
description : post . excerpt
19
19
} ) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const createSitemap = (slugs) => `<?xml version="1.0" encoding="UTF-8"?>
7
7
. map ( ( slug ) => {
8
8
return `
9
9
<url>
10
- <loc>${ `https://codewithdev.github.io /${ slug } ` } </loc>
10
+ <loc>${ `https://codewithdev.vercel.app /${ slug } ` } </loc>
11
11
</url>
12
12
` ;
13
13
} )
Original file line number Diff line number Diff line change 1
1
User-agent: *
2
- Sitemap: https://codewithdev.github.io /sitemap.xml
2
+ Sitemap: https://https:// codewithdev.vercel.app /sitemap.xml
You can’t perform that action at this time.
0 commit comments