17 lines
501 B
TypeScript
17 lines
501 B
TypeScript
import { LandingHeader } from '@/components/layout/LandingHeader';
|
|
import { LandingFooter } from '@/components/layout/LandingFooter';
|
|
|
|
export const metadata = {
|
|
title: 'Documentation API — Xpeditis',
|
|
description: 'Documentation de l\'API Xpeditis pour intégrer le fret maritime dans vos applications.',
|
|
};
|
|
|
|
export default function DocsLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<LandingHeader />
|
|
<main className="pt-20">{children}</main>
|
|
</>
|
|
);
|
|
}
|