Skip to content

Commit

Permalink
chore(content): update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
unnoq committed Nov 19, 2024
1 parent 9988bf4 commit 7c4f467
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
6 changes: 0 additions & 6 deletions apps/content/app/(home)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@ import { baseOptions } from '@/app/layout.config'
import { HomeLayout } from 'fumadocs-ui/layouts/home'
import type { ReactNode } from 'react'

export const metadata = {
title: 'oRPC - End-to-end typesafe APIs builder',
description:
'oRPC is an open-source solution for building modern, typesafe APIs. Build robust, scalable APIs and expose them to the internet with typesafe clients and full OpenAPI support.',
}

export default function Layout({
children,
}: {
Expand Down
11 changes: 11 additions & 0 deletions apps/content/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ import 'fumadocs-twoslash/twoslash.css'
import { RootProvider } from 'fumadocs-ui/provider'
import { GeistMono } from 'geist/font/mono'
import { GeistSans } from 'geist/font/sans'
import type { Metadata } from 'next'

export const metadata: Metadata = {
metadataBase: new URL('https://orpc.unnoq.com'),
title: {
default: 'oRPC - End-to-end typesafe APIs builder',
template: '%s | oRPC',
},
description:
'oRPC is an open-source solution for building modern, typesafe APIs. Build robust, scalable APIs and expose them to the internet with typesafe clients and full OpenAPI support.',
}

export default function Layout({ children }: { children: React.ReactNode }) {
return (
Expand Down

0 comments on commit 7c4f467

Please sign in to comment.