mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 22:58:17 +00:00
24 lines
859 B
TypeScript
24 lines
859 B
TypeScript
import type { Metadata } from 'next';
|
||
|
||
export const metadata: Metadata = {
|
||
title: 'EDR Train Services – Booking, Seats, Payments & More',
|
||
description:
|
||
'Explore all services offered by the Ethio-Djibouti Railway: easy online booking, seat selection, flexible payment options, customer support, and live train tracking.',
|
||
alternates: {
|
||
canonical: '/services',
|
||
},
|
||
openGraph: {
|
||
title: 'EDR Train Services – Booking, Seats, Payments & More',
|
||
description:
|
||
'Book seats, pay with your preferred method, track your train live, and get support on the Ethio-Djibouti Railway.',
|
||
url: '/services',
|
||
images: [
|
||
{ url: '/edr-banner.jpg', width: 1200, height: 630, alt: 'EDR Railway – Our Services' },
|
||
],
|
||
},
|
||
};
|
||
|
||
export default function ServicesLayout({ children }: { children: React.ReactNode }) {
|
||
return children;
|
||
}
|