mirror of https://github.com/kortix-ai/suna.git
20 lines
454 B
TypeScript
20 lines
454 B
TypeScript
import { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Credentials | Kortix Suna',
|
|
description: 'Create and manage credentials to your services',
|
|
openGraph: {
|
|
title: 'Credentials | Kortix Suna',
|
|
description: 'Create and manage credentials to your services',
|
|
type: 'website',
|
|
},
|
|
};
|
|
|
|
export default async function CredentialsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <>{children}</>;
|
|
}
|