File tree 3 files changed +21
-6
lines changed
3 files changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ const NavBar = (props: Props) => {
13
13
element ?. scrollIntoView ( { behavior : "smooth" } )
14
14
}
15
15
16
+ const handleGoToBlog = ( ) => {
17
+ window . location . href = "https://lazyweb.rocks/blog"
18
+ }
19
+
16
20
17
21
return (
18
22
< div className = "w-[100vw] z-[10] sticky top-0 flex justify-center" >
@@ -23,6 +27,7 @@ const NavBar = (props: Props) => {
23
27
< div className = "md:flex hidden gap-[2rem]" >
24
28
< p onClick = { ( ) => handleClick ( 'feature' ) } className = "text-white cursor-pointer" > Features</ p >
25
29
< p onClick = { ( ) => handleClick ( 'services' ) } className = "text-white cursor-pointer" > Services</ p >
30
+ < p onClick = { ( ) => handleGoToBlog ( ) } className = "text-white cursor-pointer" > Blog</ p >
26
31
</ div >
27
32
< button onClick = { handleGoto } className = "bg-white md:flex items-center justify-center hidden font-medium text-gray rounded-lg px-[20px] h-[40px] whitespace-nowrap" > Launch App</ button >
28
33
</ div >
Original file line number Diff line number Diff line change @@ -54,6 +54,11 @@ export default function SEO({
54
54
name = "twitter:image"
55
55
content = "https://opengraph.b-cdn.net/production/documents/d77cfe8a-7bf5-493e-ae45-e24b06d49180.png?token=XqhxH33yqZ2mus4WtYg-dXQLZZqPTOKJ_5wkQ9HZRNo& height = 628 & width = 1200 & expires = 33246160075 "
56
56
/>
57
+ { /* conical tag */ }
58
+ < link rel = "canonical" href = "https://lazyweb.rocks" />
59
+ { /* robots */ }
60
+ < meta name = "robots" content = "index, follow" />
61
+
57
62
</ >
58
63
59
64
Original file line number Diff line number Diff line change 1
1
2
2
<urlset xmlns =" https://www.sitemaps.org/schemas/sitemap/0.9" xmlns : xsi =" https://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" https://www.sitemaps.org/schemas/sitemap/0.9 https://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" >
3
- <url >
4
- <loc >https://lazyweb.rocks/</loc >
5
- <changefreq >daily</changefreq >
6
- <lastmod > 2023-12-26</lastmod >
7
- </url >
8
- </urlset >
3
+ <url >
4
+ <loc >https://lazyweb.rocks/</loc >
5
+ <changefreq >daily</changefreq >
6
+ <lastmod >2023-12-26</lastmod >
7
+ </url >
8
+ <url >
9
+ <loc >https://lazyweb.rocks/blog</loc >
10
+ <changefreq >daily</changefreq >
11
+ <lastmod >2024-04-08</lastmod >
12
+ </url >
13
+ </urlset >
You can’t perform that action at this time.
0 commit comments