Skip to content

Commit 8e3313b

Browse files
committed
../
1 parent 7535dfa commit 8e3313b

File tree

39 files changed

+91
-92
lines changed

39 files changed

+91
-92
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Sumit So
3+
Copyright (c) 2024 Sumit Mor
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

app/blogs/[slug]/opengraph-image.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { getBlogPosts } from "@/blogs/utils";
66
export const runtime = "nodejs";
77

88
// Image metadata
9-
export const alt = "Sumit So - Blog Post"; // More specific alt text
9+
export const alt = "Sumit Mor - Blog Post"; // More specific alt text
1010
export const size = { width: 1200, height: 630 };
1111
export const contentType = "image/png";
1212

@@ -34,8 +34,7 @@ export default async function Image({ params }: { params: { slug: string } }) {
3434
// 2. Handle the case where the post is not found
3535
if (!post) {
3636
return new Response(
37-
`Failed to generate OG Image: Post not found for slug: ${
38-
params.slug
37+
`Failed to generate OG Image: Post not found for slug: ${params.slug
3938
}. Available slugs: ${allPosts.map((p) => p.slug).join(", ")}`,
4039
{
4140
status: 404,
@@ -145,7 +144,7 @@ export default async function Image({ params }: { params: { slug: string } }) {
145144
}}
146145
>
147146
<div style={{ fontSize: 24, fontWeight: 600, color: "#353534" }}>
148-
{"Sumit So"}
147+
{"Sumit Mor"}
149148
</div>
150149
<div style={{ fontSize: 20, color: "#6b7280" }}>
151150
{formattedDate}

app/blogs/[slug]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
// url: ogImage,
4646
// width: 1200,
4747
// height: 630,
48-
// alt: "Sumit So - Blog Post",
48+
// alt: "Sumit Mor - Blog Post",
4949
// },
5050
// ],
5151
// },
@@ -209,7 +209,7 @@ export default function Blog({ params }) {
209209
url: `${baseUrl}/blogs/${post.slug}`,
210210
author: {
211211
"@type": "Person",
212-
name: "Sumit So", // Changed from "My Portfolio"
212+
name: "Sumit Mor", // Changed from "My Portfolio"
213213
},
214214
}),
215215
}}

app/blogs/layout.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ import "../global.css";
33
import { Metadata } from "next";
44

55
export const metadata: Metadata = {
6-
title: "Sumit So | Blogs",
6+
title: "Sumit Mor | Blogs",
77
description:
8-
"Discover stories, thinking, and expertise from Sumit So - Developer Advocate at VideoSDK.live. Explore tutorials, insights, and technical deep-dives on React, WebAssembly, and modern web development.",
8+
"Discover stories, thinking, and expertise from Sumit Mor - Developer Advocate at VideoSDK.live. Explore tutorials, insights, and technical deep-dives on React, WebAssembly, and modern web development.",
99
openGraph: {
10-
title: "Sumit So | Blogs",
10+
title: "Sumit Mor | Blogs",
1111
description:
12-
"Discover stories, thinking, and expertise from Sumit So - Developer Advocate at VideoSDK.live. Explore tutorials, insights, and technical deep-dives on React, WebAssembly, and modern web development.",
12+
"Discover stories, thinking, and expertise from Sumit Mor - Developer Advocate at VideoSDK.live. Explore tutorials, insights, and technical deep-dives on React, WebAssembly, and modern web development.",
1313
type: "website",
1414
locale: "en_US",
15-
siteName: "Sumit So",
15+
siteName: "Sumit Mor",
1616
url: "/blogs",
1717
},
1818
twitter: {
1919
card: "summary_large_image",
20-
title: "Sumit So | Blogs",
20+
title: "Sumit Mor | Blogs",
2121
description:
22-
"Discover stories, thinking, and expertise from Sumit So - Developer Advocate at VideoSDK.live. Explore tutorials, insights, and technical deep-dives on React, WebAssembly, and modern web development.",
22+
"Discover stories, thinking, and expertise from Sumit Mor - Developer Advocate at VideoSDK.live. Explore tutorials, insights, and technical deep-dives on React, WebAssembly, and modern web development.",
2323
},
2424
keywords: [
25-
"Sumit So",
25+
"Sumit Mor",
2626
"Developer Advocate",
2727
"VideoSDK",
2828
"React",
@@ -35,9 +35,9 @@ export const metadata: Metadata = {
3535
"Blog",
3636
"Tech Articles",
3737
],
38-
authors: [{ name: "Sumit So", url: "https://sumitso.in" }],
39-
creator: "Sumit So",
40-
publisher: "Sumit So",
38+
authors: [{ name: "Sumit Mor", url: "https://sumitso.in" }],
39+
creator: "Sumit Mor",
40+
publisher: "Sumit Mor",
4141
alternates: {
4242
canonical: "/blogs",
4343
},

app/blogs/opengraph-image.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { getBlogPosts } from "./utils";
55
export const runtime = "nodejs";
66

77
// Image metadata
8-
export const alt = "Sumit So - Blogs";
8+
export const alt = "Sumit Mor - Blogs";
99
export const size = { width: 1200, height: 630 };
1010
export const contentType = "image/png";
1111

app/blogs/posts/react-19-actions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ summary: "Explore the new state management features in React 19, making React de
99

1010
Hey there!
1111

12-
This is Sumit So, Welcome to my space on the internet _ \_ _
12+
This is Sumit Mor, Welcome to my space on the internet _ \_ _
1313

1414
If you are a React Developer or use React in some form, then things are about to get easier for you
1515
because **_React 19_** is on its way, coming with some magical solutions for problems that were previously solved by

app/blogs/posts/react-ssr-part-01.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ summary: "Learning how to build a React SSR application from scratch will help i
77

88
Hey there!
99

10-
This is Sumit So. Welcome to my space on the internet.
10+
This is Sumit Mor. Welcome to my space on the internet.
1111

1212
A few days ago, I wrote a blog titled [A Cartoon Guide: How React Clients Operate!](/blogs/a-cartoon-intro-building-react-from-scratch). And the conclusion was, whenever a user tries to access a webpage in React Client Application, the server sends an empty `HTML file`. Once that empty HTML is downloaded, then the browser downloads the bundled JavaScript files. Wait, what?
1313

app/hire-me-as-dev-rel/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import React from "react";
22
import { Metadata } from "next";
33

44
export const metadata: Metadata = {
5-
title: "Experience | Sumit So",
6-
description: "Sumit So's work experience and resume.",
5+
title: "Experience | Sumit Mor",
6+
description: "Sumit Mor's work experience and resume.",
77
};
88

99
export default function HireMePage() {
@@ -12,7 +12,7 @@ export default function HireMePage() {
1212
<iframe
1313
src="/sumit-mor.pdf#view=FitH"
1414
className="w-full h-full border-none"
15-
title="Sumit So Resume"
15+
title="Sumit Mor Resume"
1616
>
1717
<p>
1818
Your browser does not support iframes.

app/layout.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@ import { Metadata } from "next";
44
import { Inter } from "next/font/google";
55

66
export const metadata: Metadata = {
7-
title: "Sumit So - Developer Advocate & Content Creator",
7+
title: "Sumit Mor - Developer Advocate & Content Creator",
88
description:
99
"Developer Advocate at VideoSDK.live & Content Creator sharing journey in tech through blogs, videos, and tutorials. Connecting AI, Tech & society",
1010
openGraph: {
1111
type: "website",
1212
locale: "en_US",
13-
title: "Sumit So - Developer Advocate & Content Creator",
13+
title: "Sumit Mor - Developer Advocate & Content Creator",
1414
description:
1515
"Developer Advocate at VideoSDK.live & Content Creator sharing journey in tech through blogs, videos, and tutorials. Connecting AI, Tech & society",
16-
siteName: "Sumit So",
16+
siteName: "Sumit Mor",
1717
images: [
1818
{
1919
url: "https://sumitso.in/opengraph-image.png",
2020
width: 1200,
2121
height: 630,
22-
alt: "Sumit So - Developer Advocate & Content Creator",
22+
alt: "Sumit Mor - Developer Advocate & Content Creator",
2323
},
2424
],
2525
},
2626
twitter: {
2727
card: "summary_large_image",
28-
title: "Sumit So - Developer Advocate & Content Creator",
28+
title: "Sumit Mor - Developer Advocate & Content Creator",
2929
description:
3030
"Developer Advocate at VideoSDK.live & Content Creator sharing journey in tech through blogs, videos, and tutorials. Connecting AI, Tech & society",
3131
images: ["https://sumitso.in/opengraph-image.png"],

app/opengraph-image.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ImageResponse } from "next/og";
66
// export const runtime = "edge";
77

88
// Image metadata
9-
export const alt = "Sumit So - Developer Advocate & Content Creator";
9+
export const alt = "Sumit Mor - Developer Advocate & Content Creator";
1010
export const size = {
1111
width: 1200,
1212
height: 630,
@@ -62,7 +62,7 @@ export default async function Image() {
6262
marginBottom: "20px",
6363
}}
6464
>
65-
Sumit So is a developer advocate at videoSDK.live, a platform that
65+
Sumit Mor is a developer advocate at videoSDK.live, a platform that
6666
makes it easy for developers to integrate real-time video, audio,
6767
and interactive features.
6868
</div>

0 commit comments

Comments
 (0)