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

24 lines
859 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: '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;
}