aboutsummaryrefslogtreecommitdiff
path: root/app/services/page.js
blob: 3e0044d4bbb773968ba27043cde92c77d9b02237 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Header from "@/components/Header";

export const metadata = {
    title: 'Services',
    description: 'Information whether its safe to travel to other countries',
}

export default function Services() {
    return (
        <main className="flex flex-col">
            <Header title={metadata.title} description={metadata.description} />
        </main>
    )
}