Skip to content

Commit

Permalink
Modified - Meta data
Browse files Browse the repository at this point in the history
  • Loading branch information
MILAN88888 committed Sep 8, 2023
1 parent 2e47d1b commit 50ab93f
Showing 1 changed file with 50 additions and 48 deletions.
98 changes: 50 additions & 48 deletions components/AppMetaData.tsx
Original file line number Diff line number Diff line change
@@ -1,51 +1,53 @@
const author = "Milan Kumar Chaudhary";
export const author = "Milan Chaudhary";
const description =
"Software developer from Nepal, Republic of, who loves to develop beautiful websites, single page applications, customer relationship management, Web developement, PHP web application, Laravel application, wordpress site or code from scratch using React and Next.js";
"Software developer from Nepal, Republic of, who loves to develop beautiful websites, single page applications, customer relationship management, Web developement, PHP web application, Laravel application, wordpress site or code from scratch using React and Next.js";
import type { Metadata } from "next";

const url = "https://milanc.netlify.app";
export const AppMetadata = {
metadataBase: new URL("https://milanc.netlify.app/"),
title: {
default: `Portfolio | ${author}`,
template: `%s | ${author}`
},
description: description,
icons: {
icon: "/favicon.png"
},
keywords: [
"Milan Kumar Chaudhary",
"Milan Chaudhary",
"Milan Chaudhary - software developer",
"Backend developer",
"PHP developer",
"Wordpress developer",
"Laravel developer",
"Portfolio website",
"Frontend Developer Portfolio"
],
creator: author,
authors: [{ name: author, url: url }],
colorScheme: "dark",
openGraph: {
title: `${author} | Portfolio`,
description: description,
url: url,
siteName: `${author} | Portfolio`,
images: [
{
url: "https://milanc.netlify.app/screenshot.webp",
width: 800,
height: 600,
alt: "My personal portfolio website"
},
{
url: "https://milanc.netlify.app/screenshot.webp",
width: 1800,
height: 1600,
alt: "My personal portfolio website"
}
],
locale: "en-US",
type: "website"
}
export const AppMetaData: Metadata = {
metadataBase: new URL("https://milanc.netlify.app/"),
title: {
default: `Portfolio | ${author}`,
template: `%s | ${author}`
},
description: description,
icons: {
icon: "/favicon.png"
},
keywords: [
"Milan Kumar Chaudhary",
"Milan Chaudhary",
"Milan Chaudhary - software developer",
"Backend developer",
"PHP developer",
"Wordpress developer",
"Laravel developer",
"Portfolio website",
"Frontend Developer Portfolio"
],
creator: author,
authors: [{ name: author, url: url }],
colorScheme: "dark",
openGraph: {
title: `${author} | Portfolio`,
description: description,
url: url,
siteName: `${author} | Portfolio`,
images: [
{
url: "https://milanc.netlify.app/screenshot.webp",
width: 800,
height: 600,
alt: "My personal portfolio website"
},
{
url: "https://milanc.netlify.app/screenshot.webp",
width: 1800,
height: 1600,
alt: "My personal portfolio website"
}
],
locale: "en-US",
type: "website"
}
};

0 comments on commit 50ab93f

Please sign in to comment.