mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-09 01:18:18 +00:00
22 lines
795 B
TypeScript
22 lines
795 B
TypeScript
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;
|
||
}
|