Skip to content

Commit

Permalink
Merge pull request #52 from 0rbit-co/staging
Browse files Browse the repository at this point in the history
  • Loading branch information
megabyte0x authored Jun 17, 2024
2 parents 3f7547b + 2ef04a9 commit 56a228d
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "0rbit | Oracle on Arweave",
description:
"The Decentralized Oracle Network on AO for accessing the off-chain data.",
"The Decentralized Oracle Network on AO for accessing any off-chain data.",
icons: {
icon: [
{
Expand Down
12 changes: 12 additions & 0 deletions app/robots.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { MetadataRoute } from "next";

export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
disallow: "/private/",
},
sitemap: "https://0rbit.co/sitemap.xml",
};
}
30 changes: 30 additions & 0 deletions app/sitemap.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { MetadataRoute } from "next";

export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: "https://0rbit.co/",
lastModified: new Date(),
changeFrequency: "daily",
priority: 1,
},
{
url: "https://0rbit.co/team",
lastModified: new Date(),
changeFrequency: "daily",
priority: 0.8,
},
{
url: "https://docs.0rbit.co/",
lastModified: new Date(),
changeFrequency: "daily",
priority: 0.8,
},
{
url: "https://0rbit.co/quests",
lastModified: new Date(),
changeFrequency: "daily",
priority: 0.8,
},
];
}
Binary file added public/logos/ogLogo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 56a228d

Please sign in to comment.