Files
edr-platform/apps/edr-passenger-web/portal/src/app/about/layout.tsx

22 lines
795 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'About EDR Connecting East Africa by Rail',
description:
'Learn about the Ethio-Djibouti Railway (EDR): our mission to connect Ethiopia and Djibouti with comfortable, affordable, and sustainable train travel.',
alternates: {
canonical: '/about',
},
openGraph: {
title: 'About EDR Connecting East Africa by Rail',
description:
'Our mission is to provide reliable, affordable, and comfortable train travel connecting Ethiopia and Djibouti.',
url: '/about',
images: [{ url: '/edr-banner.jpg', width: 1200, height: 630, alt: 'EDR Railway About Us' }],
},
};
export default function AboutLayout({ children }: { children: React.ReactNode }) {
return children;
}