16 lines
535 B
TypeScript
16 lines
535 B
TypeScript
|
|
import { pageMetadata } from '@/lib/seo';
|
||
|
|
import type { ReactNode } from 'react';
|
||
|
|
|
||
|
|
// The contact page itself is a client component ('use client'), which cannot
|
||
|
|
// export metadata — so the canonical/description live here.
|
||
|
|
export const metadata = pageMetadata({
|
||
|
|
title: 'Contact',
|
||
|
|
description:
|
||
|
|
'Get in touch with the BuildMyMCPServer team — support, sales and security questions answered by email.',
|
||
|
|
path: '/contact',
|
||
|
|
});
|
||
|
|
|
||
|
|
export default function ContactLayout({ children }: { children: ReactNode }) {
|
||
|
|
return children;
|
||
|
|
}
|