Skip to content

Commit

Permalink
chore: metadata tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobinstein committed Dec 5, 2024
1 parent 9b05e1f commit fa94ee6
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
33 changes: 31 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,40 @@ import '@/styles/tailwind.css'

export const metadata: Metadata = {
title: {
template: '%s - Protocol API Reference',
default: 'Protocol API Reference',
template: 'ar.io Network Docs - %s',
default: 'ar.io Network Docs',
},
icons: {
icon: "https://arweave.net/IXl1JBlE_gsOaXGa6yE1eifPu7ekH-qSaGR9b5GU88Y"
},
description: "Documentation, guides, and other resources for ar.io developers and gateway operators.",
openGraph: {
title: {
template: 'ar.io Network Docs - %s',
default: 'ar.io Network Docs',
},
images: [
{
url: 'https://res.cloudinary.com/dopbvlqgc/image/upload/v1706802732/ario_v2nv53.png',
},
],
},
twitter: {
card: 'summary_large_image',
title: {
template: 'ar.io Network Docs - %s',
default: 'ar.io Network Docs',
},
site: '@ar_io_network',
images: [
{
url: 'https://res.cloudinary.com/dopbvlqgc/image/upload/v1706802732/ario_v2nv53.png',
},
],
},
}


export default async function RootLayout({
children,
}: {
Expand Down
7 changes: 7 additions & 0 deletions src/app/learn/concepts/manifests/page.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
import {HeroPattern} from "@/components/HeroPattern"



export const metadata = {
title: "Manifests",
description: "Manifests do cool stuff."
}

<HeroPattern />

# Manifests
Expand Down

0 comments on commit fa94ee6

Please sign in to comment.