aboutsummaryrefslogtreecommitdiff
path: root/app/visas/page.js
blob: eb5ba3cf0c4c5715cd6e948832ce4ca381dec2f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Countries } from "./ListCountries";
import Header from "../components/Header";

export const metadata = {
    title: 'Visas',
    description: 'Information whether a country is required a visa or not.  ',
}

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