Skip to content

Commit

Permalink
gfsd
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajrekwar committed Aug 8, 2024
1 parent ade3d16 commit a2f4fc4
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import { AccordionDemo } from "@/components/Accordion";
export const metadata: Metadata = {
title: "nee. - Portfolio Framer Template For Freelancers",
description: "Generated by create next app",


};

export default function Home() {
Expand Down
54 changes: 54 additions & 0 deletions app/sitemap.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
import { MetadataRoute } from "next";

export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: "https://neerajrekwar.gihub.io/",
lastModified: new Date(),
changeFrequency: "yearly",
alternates: {
languages: {
es: "https://neerajrekwar.gihub.io/es",
de: "https://neerajrekwar.gihub.io/de",
},
},
priority: 1,
},
{
url: "https://neerajrekwar.gihub.io/about",
lastModified: new Date(),
changeFrequency: "monthly",
alternates: {
languages: {
es: "https://neerajrekwar.gihub.io/es/about",
de: "https://neerajrekwar.gihub.io/de/about",
},
},
priority: 0.8,
},
{
url: "https://neerajrekwar.gihub.io/blog",
lastModified: new Date(),
changeFrequency: "monthly",
alternates: {
languages: {
es: "https://neerajrekwar.gihub.io/es/blog",
de: "https://neerajrekwar.gihub.io/de/blog",
},
},
priority: 0.8,
},
{
url: "https://neerajrekwar.gihub.io/contact",
lastModified: new Date(),
changeFrequency: "monthly",
alternates: {
languages: {
es: "https://neerajrekwar.gihub.io/es/contact",
de: "https://neerajrekwar.gihub.io/de/contact",
},
},
priority: 0.8,
},
];
}

0 comments on commit a2f4fc4

Please sign in to comment.