Some checks are pending
CD Production (Hetzner k3s) / Promote Images (preprod → prod) (push) Waiting to run
CD Production (Hetzner k3s) / Deploy to k3s (xpeditis-prod) (push) Blocked by required conditions
CD Production (Hetzner k3s) / Smoke Tests (push) Blocked by required conditions
CD Production (Hetzner k3s) / Deployment Summary (push) Blocked by required conditions
CD Production (Hetzner k3s) / Notify Success (push) Blocked by required conditions
CD Production (Hetzner k3s) / Notify Failure (push) Blocked by required conditions
Aligns main with the complete application codebase (cicd branch). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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>
|
|
</>
|
|
);
|
|
}
|